mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Link fixes
- Enable link webcomponents in etemplate.php - Fix widget ID got overwritten - Put title into light DOM for easier styling - Styling
This commit is contained in:
parent
875a3996aa
commit
d23b7c1a51
@ -13,7 +13,7 @@
|
|||||||
use EGroupware\Api;
|
use EGroupware\Api;
|
||||||
|
|
||||||
// add et2- prefix to following widgets/tags, if NO <overlay legacy="true"
|
// add et2- prefix to following widgets/tags, if NO <overlay legacy="true"
|
||||||
const ADD_ET2_PREFIX_REGEXP = '#<((/?)([vh]?box|date(-time[^\s]*|-duration|-since)?|textbox|textarea|button|colorpicker|description|image|url(-email|-phone|-fax)?))(/?|\s[^>]*)>#m';
|
const ADD_ET2_PREFIX_REGEXP = '#<((/?)([vh]?box|date(-time[^\s]*|-duration|-since)?|textbox|textarea|button|colorpicker|description|image|link|link-string|link-list|url(-email|-phone|-fax)?))(/?|\s[^>]*)>#m';
|
||||||
const ADD_ET2_PREFIX_LAST_GROUP = 6;
|
const ADD_ET2_PREFIX_LAST_GROUP = 6;
|
||||||
|
|
||||||
// unconditional of legacy add et2- prefix to this widgets
|
// unconditional of legacy add et2- prefix to this widgets
|
||||||
|
@ -36,12 +36,15 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
|
|||||||
display: block;
|
display: block;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
:host:hover {
|
||||||
|
text-decoration: underline
|
||||||
|
}
|
||||||
/** Style based on parent **/
|
/** Style based on parent **/
|
||||||
:host-context(et2-link-string) {
|
:host-context(et2-link-string) {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
:host-context(et2-link-string):hover {
|
:host-context(et2-link-list):hover {
|
||||||
text-decoration: underline;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
];
|
];
|
||||||
@ -125,6 +128,11 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
|
|||||||
super.connectedCallback();
|
super.connectedCallback();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
createRenderRoot()
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
render()
|
render()
|
||||||
{
|
{
|
||||||
let title = this.title;
|
let title = this.title;
|
||||||
@ -155,7 +163,7 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
|
|||||||
if(!_value)
|
if(!_value)
|
||||||
{
|
{
|
||||||
this.app = "";
|
this.app = "";
|
||||||
this.id = "";
|
this.entry_id = "";
|
||||||
this.title = "";
|
this.title = "";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -191,6 +199,7 @@ export class Et2Link extends ExposeMixin<Et2Widget>(Et2Widget(LitElement)) imple
|
|||||||
}
|
}
|
||||||
Object.keys(_value).forEach(key =>
|
Object.keys(_value).forEach(key =>
|
||||||
{
|
{
|
||||||
|
// Skip these, they're either handled explicitly, or ID which we don't want to mess with
|
||||||
if(["app", "entry_id", "title", "id"].indexOf(key) != -1)
|
if(["app", "entry_id", "title", "id"].indexOf(key) != -1)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
@ -1235,13 +1235,13 @@ div.et2_link_entry input.ui-autocomplete-input {
|
|||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.et2_link, et2-link-string > et2-link {
|
.et2_link, et2-link {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #003075;
|
color: #003075;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.et2_link:hover {
|
.et2_link:hover, et2-link:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1288,6 +1288,14 @@ ul.et2_link_string {
|
|||||||
height: 16px;
|
height: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
et2-link-list et2-link {
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
et2-link-list et2-link:hover {
|
||||||
|
text-decoration: initial;
|
||||||
|
}
|
||||||
|
|
||||||
.et2_link_list .icon img,
|
.et2_link_list .icon img,
|
||||||
.et2_vfs .icon img {
|
.et2_vfs .icon img {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
|
Loading…
Reference in New Issue
Block a user