mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
Add "hasValue" class for input widgets that have a value, and use that class to hide required styling when the widget has a value
This commit is contained in:
parent
2f97c28a5f
commit
3616fe9df0
@ -188,6 +188,12 @@ const Et2InputWidgetMixin = <T extends Constructor<LitElement>>(superclass : T)
|
|||||||
this.validators.push(new Required());
|
this.validators.push(new Required());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(changedProperties.has("value"))
|
||||||
|
{
|
||||||
|
// Base off this.value, not this.getValue(), to ignore readonly
|
||||||
|
this.classList.toggle("hasValue", !(this.value == null || this.value == ""));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1996,7 +1996,7 @@ img.vfsMimeIcon[src*="/etemplate/thumbnail.php"] {
|
|||||||
/**
|
/**
|
||||||
* Validation
|
* Validation
|
||||||
*/
|
*/
|
||||||
.et2_required, .et2_required::part(base), [required]::part(base) {
|
.et2_required:not(.hasValue), .et2_required:not(.hasValue)::part(base), [required]:not(.hasValue)::part(base) {
|
||||||
background-color: #ffffd0;
|
background-color: #ffffd0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -600,26 +600,6 @@
|
|||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
/**
|
/**
|
||||||
* Validation
|
|
||||||
*/
|
|
||||||
.et2_required,
|
|
||||||
[required]::part(base) {
|
|
||||||
background-color: #FFDD73;
|
|
||||||
-webkit-border-top-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-left-radius: 3px;
|
|
||||||
-webkit-border-top-left-radius: 3px;
|
|
||||||
-moz-border-radius-topright: 3px;
|
|
||||||
-moz-border-radius-bottomright: 3px;
|
|
||||||
-moz-border-radius-bottomleft: 3px;
|
|
||||||
-moz-border-radius-topleft: 3px;
|
|
||||||
border-top-right-radius: 3px;
|
|
||||||
border-bottom-right-radius: 3px;
|
|
||||||
border-bottom-left-radius: 3px;
|
|
||||||
border-top-left-radius: 3px;
|
|
||||||
/*.background-clip(padding-box);*/
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* hrule widget
|
* hrule widget
|
||||||
*/
|
*/
|
||||||
hr {
|
hr {
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
html[data-darkmode='2'] {
|
html[data-darkmode='2'] {
|
||||||
background: #000;
|
background: #000;
|
||||||
filter: invert(1) hue-rotate(180deg) brightness(0.7);
|
filter: invert(1) hue-rotate(180deg) brightness(1);
|
||||||
}
|
}
|
||||||
html[data-darkmode='2'] #loginMainDiv {
|
html[data-darkmode='2'] #loginMainDiv {
|
||||||
filter: invert(1) hue-rotate(180deg) !important;
|
filter: invert(1) hue-rotate(180deg) !important;
|
||||||
@ -53,8 +53,14 @@
|
|||||||
@media all {
|
@media all {
|
||||||
html[data-darkmode='1'] {
|
html[data-darkmode='1'] {
|
||||||
background: #000;
|
background: #000;
|
||||||
filter: invert(1) hue-rotate(180deg) brightness(0.7);
|
filter: invert(1) hue-rotate(180deg) brightness(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-darkmode='1'] sl-menu-item::part(prefix),
|
||||||
|
html[data-darkmode='1'] et2-select-country::part(prefix),
|
||||||
|
html[data-darkmode='1'] et2-email-tag::part(prefix),
|
||||||
|
html[data-darkmode='1'] et2-button::part(prefix),
|
||||||
|
html[data-darkmode='1'] *::part(image),
|
||||||
html[data-darkmode='1'] img,
|
html[data-darkmode='1'] img,
|
||||||
html[data-darkmode='1'] #blueimp-gallery:not(:fullscreen),
|
html[data-darkmode='1'] #blueimp-gallery:not(:fullscreen),
|
||||||
html[data-darkmode='1'] #blueimp-gallery ol,
|
html[data-darkmode='1'] #blueimp-gallery ol,
|
||||||
@ -66,13 +72,20 @@
|
|||||||
html[data-darkmode='1'] .et2_taglist_tags_icon {
|
html[data-darkmode='1'] .et2_taglist_tags_icon {
|
||||||
filter: invert(1) hue-rotate(180deg) !important;
|
filter: invert(1) hue-rotate(180deg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-darkmode='1'] .dtree img {
|
||||||
|
filter: invert(0) hue-rotate(180deg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] #blueimp-gallery video,
|
html[data-darkmode='1'] #blueimp-gallery video,
|
||||||
html[data-darkmode='1'] #blueimp-gallery .video-content {
|
html[data-darkmode='1'] #blueimp-gallery .video-content {
|
||||||
filter: invert(0) hue-rotate(180deg) !important;
|
filter: invert(0) hue-rotate(180deg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] #loginMainDiv div#centerBox {
|
html[data-darkmode='1'] #loginMainDiv div#centerBox {
|
||||||
filter: invert(1) hue-rotate(180deg) !important;
|
filter: invert(1) hue-rotate(180deg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] div.dhtmlxMenu_egw_SubLevelArea_Polygon,
|
html[data-darkmode='1'] div.dhtmlxMenu_egw_SubLevelArea_Polygon,
|
||||||
html[data-darkmode='1'] .egw_tooltip,
|
html[data-darkmode='1'] .egw_tooltip,
|
||||||
html[data-darkmode='1'] body .egw_message_wrapper,
|
html[data-darkmode='1'] body .egw_message_wrapper,
|
||||||
@ -580,26 +593,6 @@
|
|||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
/**
|
/**
|
||||||
* Validation
|
|
||||||
*/
|
|
||||||
.et2_required,
|
|
||||||
[required]::part(base) {
|
|
||||||
background-color: #FFDD73;
|
|
||||||
-webkit-border-top-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-left-radius: 3px;
|
|
||||||
-webkit-border-top-left-radius: 3px;
|
|
||||||
-moz-border-radius-topright: 3px;
|
|
||||||
-moz-border-radius-bottomright: 3px;
|
|
||||||
-moz-border-radius-bottomleft: 3px;
|
|
||||||
-moz-border-radius-topleft: 3px;
|
|
||||||
border-top-right-radius: 3px;
|
|
||||||
border-bottom-right-radius: 3px;
|
|
||||||
border-bottom-left-radius: 3px;
|
|
||||||
border-top-left-radius: 3px;
|
|
||||||
/*.background-clip(padding-box);*/
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* hrule widget
|
* hrule widget
|
||||||
*/
|
*/
|
||||||
hr {
|
hr {
|
||||||
@ -716,7 +709,7 @@
|
|||||||
width: 50% !important;
|
width: 50% !important;
|
||||||
}
|
}
|
||||||
.nextmatch_header > .filters > select > option {
|
.nextmatch_header > .filters > select > option {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.nextmatch_header > .filters input {
|
.nextmatch_header > .filters input {
|
||||||
margin-right: 2ex;
|
margin-right: 2ex;
|
||||||
@ -914,12 +907,12 @@
|
|||||||
background-size: 12px 12px;
|
background-size: 12px 12px;
|
||||||
background-position: 1px 0;
|
background-position: 1px 0;
|
||||||
margin-right: 9px;
|
margin-right: 9px;
|
||||||
margin-left: 4px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
.sidebox-favorites ul.favorites li.ui-menu-item a div.sideboxstar {
|
.sidebox-favorites ul.favorites li.ui-menu-item a div.sideboxstar {
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
margin-left: 5px;
|
margin-left: 4px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
background-image: url(../../api/templates/default/images/fav_filter.svg);
|
background-image: url(../../api/templates/default/images/fav_filter.svg);
|
||||||
background-size: 12px 12px;
|
background-size: 12px 12px;
|
||||||
@ -1040,18 +1033,6 @@
|
|||||||
margin: 2px !important;
|
margin: 2px !important;
|
||||||
min-height: 19px;*/
|
min-height: 19px;*/
|
||||||
}
|
}
|
||||||
div.ui-toolbar-menulist {
|
|
||||||
position: absolute;
|
|
||||||
height: inherit;
|
|
||||||
z-index: 999 !important;
|
|
||||||
overflow: hidden !important;
|
|
||||||
border: solid black 1px;
|
|
||||||
padding: 0 !important;
|
|
||||||
margin-top: 3px !important;
|
|
||||||
}
|
|
||||||
.ui-toolbar-menulist > h {
|
|
||||||
padding-bottom: 7px;
|
|
||||||
}
|
|
||||||
.ui-toolbar-menulistHeader {
|
.ui-toolbar-menulistHeader {
|
||||||
font-size: xx-small;
|
font-size: xx-small;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -1122,34 +1103,6 @@
|
|||||||
.et2_toolbar span.et2_checkbox_slideSwitch.switchOn {
|
.et2_toolbar span.et2_checkbox_slideSwitch.switchOn {
|
||||||
filter: none;
|
filter: none;
|
||||||
}
|
}
|
||||||
/*#################################### ADMIN PART #####################################################*/
|
|
||||||
iframe#admin-index_iframe {
|
|
||||||
background-color: yellow;
|
|
||||||
}
|
|
||||||
table.egwGridView_grid img {
|
|
||||||
/*filter grey*/
|
|
||||||
/*filter grey*/
|
|
||||||
filter: none;
|
|
||||||
-webkit-filter: initial;
|
|
||||||
-moz-filter: initial;
|
|
||||||
-ms-filter: initial;
|
|
||||||
-o-filter: initial;
|
|
||||||
/*filter: url(grayscale.svg); Firefox 4+ */
|
|
||||||
filter: initial;
|
|
||||||
/* IE 6-9 */
|
|
||||||
}
|
|
||||||
.admin_aclAPP {
|
|
||||||
/*filter grey*/
|
|
||||||
filter: none;
|
|
||||||
-webkit-filter: initial;
|
|
||||||
-moz-filter: initial;
|
|
||||||
-ms-filter: initial;
|
|
||||||
-o-filter: initial;
|
|
||||||
/*filter: url(grayscale.svg); Firefox 4+ */
|
|
||||||
filter: initial;
|
|
||||||
/* IE 6-9 */
|
|
||||||
}
|
|
||||||
/*#################################### END ADMIN PART #####################################################*/
|
|
||||||
}
|
}
|
||||||
/*#################################### Media Queries #####################################################*/
|
/*#################################### Media Queries #####################################################*/
|
||||||
@media only screen and (min-width: 980px) and (max-width: 1279px) {
|
@media only screen and (min-width: 980px) and (max-width: 1279px) {
|
||||||
@ -1204,7 +1157,7 @@ option:checked {
|
|||||||
/* Component containers
|
/* Component containers
|
||||||
----------------------------------*/
|
----------------------------------*/
|
||||||
.ui-widget {
|
.ui-widget {
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
.ui-widget .ui-widget {
|
.ui-widget .ui-widget {
|
||||||
@ -1214,8 +1167,8 @@ option:checked {
|
|||||||
.ui-widget select,
|
.ui-widget select,
|
||||||
.ui-widget textarea,
|
.ui-widget textarea,
|
||||||
.ui-widget button {
|
.ui-widget button {
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.ui-widget-content {
|
.ui-widget-content {
|
||||||
/*.bordered (@color-hint,@color-hint,@color-hint,@color-hint);*/
|
/*.bordered (@color-hint,@color-hint,@color-hint,@color-hint);*/
|
||||||
@ -1852,7 +1805,7 @@ body {
|
|||||||
padding: 0px !important;
|
padding: 0px !important;
|
||||||
width: 99.9%;
|
width: 99.9%;
|
||||||
height: 99.9% !important;
|
height: 99.9% !important;
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
line-height: 1.28;
|
line-height: 1.28;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -2257,7 +2210,7 @@ div#loginMainDiv.stockLoginBackground div#centerBox form {
|
|||||||
#loginMainDiv div#centerBox form table.divLoginbox select.onChangeSubmit {
|
#loginMainDiv div#centerBox form table.divLoginbox select.onChangeSubmit {
|
||||||
background-color: #4177A2;
|
background-color: #4177A2;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-size: 20px;
|
font-size: 22px;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
@ -2266,7 +2219,7 @@ div#loginMainDiv.stockLoginBackground div#centerBox form {
|
|||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
#loginMainDiv div#centerBox form table.divLoginbox .registration {
|
#loginMainDiv div#centerBox form table.divLoginbox .registration {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
#loginMainDiv div#centerBox form table.divLoginbox .registration a:not(:first-child):before {
|
#loginMainDiv div#centerBox form table.divLoginbox .registration a:not(:first-child):before {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
@ -2998,7 +2951,7 @@ div.client_error_log tr td.stack > div {
|
|||||||
body,
|
body,
|
||||||
textarea,
|
textarea,
|
||||||
button {
|
button {
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
}
|
}
|
||||||
#egw_fw_basecontainer {
|
#egw_fw_basecontainer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -3006,7 +2959,7 @@ button {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
input {
|
input {
|
||||||
@ -3197,16 +3150,29 @@ div.dhtmlxMenu_egw_SubLevelArea_Polygon {
|
|||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item td.sub_item_hk div.sub_item_hk {
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item td.sub_item_hk div.sub_item_hk {
|
||||||
color: #373f3f;
|
color: #373f3f;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected {
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected {
|
||||||
background-color: rgba(153, 204, 255, 0.4) !important;
|
background-color: hsl(200, 98%, 39%) !important;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected td.sub_item_icon img.sub_icon {
|
||||||
|
filter: invert(1) brightness(5);
|
||||||
|
}
|
||||||
|
|
||||||
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected div.sub_item_text,
|
||||||
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item_selected td.sub_item_hk div.sub_item_hk {
|
||||||
|
color: hsl(0, 0%, 100%);
|
||||||
|
}
|
||||||
|
|
||||||
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl div.sub_sep {
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl div.sub_sep {
|
||||||
border-top: 1px solid #E6E6E6;
|
border-top: 1px solid #E6E6E6;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* EGroupware: Stylite Pixelegg template
|
* EGroupware: Stylite Pixelegg template
|
||||||
*
|
*
|
||||||
@ -3303,10 +3269,7 @@ table.dialog-main-view {
|
|||||||
/********** Header Part ********************/
|
/********** Header Part ********************/
|
||||||
.dialogHeader {
|
.dialogHeader {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
border-bottom: 3px solid #696969;
|
border-bottom: 2px solid #696969;
|
||||||
}
|
|
||||||
.dialogHeader img[src*="navbar"] {
|
|
||||||
padding: 0 0 0 15px;
|
|
||||||
}
|
}
|
||||||
.dialogHeader input[type="radio"],
|
.dialogHeader input[type="radio"],
|
||||||
.dialogHeader input.et2_radiobox {
|
.dialogHeader input.et2_radiobox {
|
||||||
@ -3479,15 +3442,12 @@ div#etemplate\.tab_widget {
|
|||||||
/*##############################################*/
|
/*##############################################*/
|
||||||
.dialogFooterToolbar {
|
.dialogFooterToolbar {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-top: 3px solid #696969;
|
border-top: 2px solid #696969;
|
||||||
/*.et2_selectbox {height: 32px; top: 0px; font-size: 1em;}*/
|
/*.et2_selectbox {height: 32px; top: 0px; font-size: 1em;}*/
|
||||||
}
|
}
|
||||||
.dialogFooterToolbar td {
|
.dialogFooterToolbar td {
|
||||||
padding: 5px 5px 0px 0px;
|
padding: 5px 5px 0px 0px;
|
||||||
}
|
}
|
||||||
.dialogFooterToolbar td:first-child {
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
.dialogFooterToolbar button {
|
.dialogFooterToolbar button {
|
||||||
min-width: 86px;
|
min-width: 86px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
@ -4267,15 +4227,13 @@ span.overlayContainer img.overlay {
|
|||||||
#egw_fw_header #egw_fw_topmenu {
|
#egw_fw_header #egw_fw_topmenu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: none;
|
display: none;
|
||||||
right: 2px;
|
right: 5px;
|
||||||
width: 241px;
|
width: 241px;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
top: 46px;
|
top: 46px;
|
||||||
background: white;
|
background: white;
|
||||||
box-shadow: 2px 3px 13px #666666;
|
box-shadow: 0 2px 8px hsla(240, 3.8%, 46.1%, 0.12);
|
||||||
-moz-box-shadow: 2px 3px 13px #666666;
|
border: 1px solid hsl(240, 6%, 90%);
|
||||||
-webkit-box-shadow: 2px 3px 13px #666666;
|
|
||||||
-khtml-box-shadow: 2px 3px 13px #666666;
|
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu a.powered_by {
|
#egw_fw_header #egw_fw_topmenu a.powered_by {
|
||||||
width: calc(100% - 20px);
|
width: calc(100% - 20px);
|
||||||
@ -4366,75 +4324,79 @@ span.overlayContainer img.overlay {
|
|||||||
/*logout*/
|
/*logout*/
|
||||||
/*print*/
|
/*print*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
border-top: #E6E6E6;
|
border-top: #E6E6E6;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:hover {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:hover {
|
||||||
background: rgba(153, 204, 255, 0.4);
|
background: hsl(200, 98%, 39%);
|
||||||
color: #FFFFFF;
|
color: hsl(0, 0%, 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:hover a {
|
||||||
|
filter: invert(1) brightness(5);
|
||||||
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 12px;
|
|
||||||
padding-left: 26px;
|
padding-left: 26px;
|
||||||
line-height: 1.5em;
|
line-height: 1.9em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a:hover {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a:hover {
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:first-child :before {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:first-child :before {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a {
|
||||||
|
background-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_home {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_home {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/home.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/home.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_prefs {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_prefs {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/setup.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/setup.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_acl {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_acl {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/access.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/access.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_cats {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_cats {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/category.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/category.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_password {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_password {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/password.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/password.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_manual {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_manual {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/help.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/help.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_current_user {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_current_user {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/users.png);
|
background-image: url(../../api/templates/default/images/users.png);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_logout {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_logout {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/logout.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/logout.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_print {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_print {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/print.svg);
|
background-image: url(../../api/templates/default/images/print.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items .timezone span {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items .timezone span {
|
||||||
@ -4606,7 +4568,7 @@ span.overlayContainer img.overlay {
|
|||||||
top: 8px;
|
top: 8px;
|
||||||
}
|
}
|
||||||
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
|
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
margin: 0 15px 2px 2px;
|
margin: 0 15px 2px 2px;
|
||||||
vertical-align: super;
|
vertical-align: super;
|
||||||
@ -4736,7 +4698,7 @@ span.overlayContainer img.overlay {
|
|||||||
padding-left: 3em;
|
padding-left: 3em;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
/*font-size: 12px;*/
|
/*font-size: 12px;*/
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
line-height: 17px;
|
line-height: 17px;
|
||||||
}
|
}
|
||||||
#egw_fw_sidebar #egw_fw_sidemenu .egw_fw_ui_sidemenu_entry_header object {
|
#egw_fw_sidebar #egw_fw_sidemenu .egw_fw_ui_sidemenu_entry_header object {
|
||||||
@ -4856,7 +4818,7 @@ span.overlayContainer img.overlay {
|
|||||||
margin: 5px 0px 3px 5px;
|
margin: 5px 0px 3px 5px;
|
||||||
padding: 0px 0px 0px 24px;
|
padding: 0px 0px 0px 24px;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
background-image: url(../../api/templates/default/images/arrow_right.svg);
|
background-image: url(../../api/templates/default/images/arrow_right.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
@ -5110,7 +5072,6 @@ span.overlayContainer img.overlay {
|
|||||||
position: relative;
|
position: relative;
|
||||||
min-height: 18px;
|
min-height: 18px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
overflow-x: hidden;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
@ -5123,7 +5084,7 @@ span.overlayContainer img.overlay {
|
|||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px 6px;
|
margin: 0px 5px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.egw_fw_ui_sidemenu_listitem input {
|
.egw_fw_ui_sidemenu_listitem input {
|
||||||
@ -5328,31 +5289,23 @@ span.overlayContainer img.overlay {
|
|||||||
width: 45px;
|
width: 45px;
|
||||||
border-left: 1px solid #bfc0bf;
|
border-left: 1px solid #bfc0bf;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-left: 3px;
|
padding-left: 0px;
|
||||||
float: right;
|
float: right;
|
||||||
background-size: 20px;
|
background-size: 20px;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_topmenu_info_items .topmenu_info_item:hover {
|
#egw_fw_topmenu_info_items .topmenu_info_item:hover {
|
||||||
background-color: rgba(153, 204, 255, 0.4);
|
background-color: rgba(153, 204, 255, 0.4);
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span {
|
|
||||||
height: 40px;
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.fw_avatar_stat {
|
||||||
width: 40px;
|
|
||||||
display: inline-block;
|
|
||||||
border: none;
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-left: 1px;
|
|
||||||
}
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span img {
|
|
||||||
width: 40px;
|
|
||||||
}
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.fw_avatar_stat {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.stat1 {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.stat1 {
|
||||||
width: 14px;
|
width: 14px;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -5369,24 +5322,31 @@ span.overlayContainer img.overlay {
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
border: 2px solid #fbfbfb;
|
border: 2px solid #fbfbfb;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.online {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.online {
|
||||||
background-color: #2de0a5;
|
background-color: #2de0a5;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.offline {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.offline {
|
||||||
background-color: #cbced1;
|
background-color: #cbced1;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.away {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.away {
|
||||||
background-color: #ffd21f;
|
background-color: #ffd21f;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.busy {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.busy {
|
||||||
background-color: #f5455c;
|
background-color: #f5455c;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.noconnection {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.noconnection {
|
||||||
background-color: #E1E16D;
|
background-color: #E1E16D;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.noconnection:before {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.noconnection:before {
|
||||||
content: "!";
|
content: "!";
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_logout {
|
#egw_fw_topmenu_info_items #topmenu_info_logout {
|
||||||
background-image: url(../../api/templates/default/images/logout.svg);
|
background-image: url(../../api/templates/default/images/logout.svg);
|
||||||
}
|
}
|
||||||
@ -5740,7 +5700,7 @@ button.image_button {
|
|||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@ -5926,7 +5886,6 @@ button.image_button {
|
|||||||
table.egwGridView_outer {
|
table.egwGridView_outer {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-spacing: 0px;
|
border-spacing: 0px;
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
}
|
||||||
table.egwGridView_outer thead {
|
table.egwGridView_outer thead {
|
||||||
max-height: 118px;
|
max-height: 118px;
|
||||||
@ -5944,7 +5903,7 @@ table.egwGridView_outer thead tr th {
|
|||||||
background-color: #f8f8f8;
|
background-color: #f8f8f8;
|
||||||
}
|
}
|
||||||
table.egwGridView_outer thead tr th:hover {
|
table.egwGridView_outer thead tr th:hover {
|
||||||
background-color: #bfbfbf;
|
background-color: #f0f0f0;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
/*border-right: 5px solid white;*/
|
/*border-right: 5px solid white;*/
|
||||||
background-image: url(../../api/templates/default/images/hint-arrow-right.png);
|
background-image: url(../../api/templates/default/images/hint-arrow-right.png);
|
||||||
@ -6199,29 +6158,14 @@ input[type=button],
|
|||||||
input[type=reset],
|
input[type=reset],
|
||||||
button,
|
button,
|
||||||
.egwbutton {
|
.egwbutton {
|
||||||
background-color: #f0f0f0;
|
|
||||||
background-image: none;
|
|
||||||
border: outset 1px #b9d5e3;
|
|
||||||
margin: 1px;
|
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #004e7d;
|
|
||||||
}
|
}
|
||||||
input[type=submit] {
|
input[type=submit] {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
input[type=submit]:hover,
|
|
||||||
input[type=button]:hover,
|
|
||||||
input[type=reset]:hover,
|
|
||||||
button:hover,
|
|
||||||
.egwbutton:hover {
|
|
||||||
background-color: #d9d9d9 !important;
|
|
||||||
background-image: none;
|
|
||||||
border: outset 1px #b9d5e3;
|
|
||||||
color: #004e7d;
|
|
||||||
}
|
|
||||||
input[type=submit]:active,
|
input[type=submit]:active,
|
||||||
input[type=button]:active,
|
input[type=button]:active,
|
||||||
input[type=reset]:active,
|
input[type=reset]:active,
|
||||||
@ -6529,117 +6473,6 @@ a.textSidebox {
|
|||||||
* @package pixelegg
|
* @package pixelegg
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* EGroupware: CSS with less preprocessor
|
|
||||||
*
|
|
||||||
* Definitions for tutorials
|
|
||||||
*
|
|
||||||
* Please do NOT change css-files directly, instead change less-files and compile them!
|
|
||||||
*
|
|
||||||
* @link http://www.egroupware.org
|
|
||||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
||||||
* @author Hadi NAtegh <hn@stylite.de>
|
|
||||||
* @package phpgwapi
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
span.egw_tutorial_title {
|
|
||||||
color: black;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: left;
|
|
||||||
width: 99%;
|
|
||||||
background-color: #D6DEF0;
|
|
||||||
border: 1px solid #B3B3B3;
|
|
||||||
padding-top: 4px;
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
border-radius: 2px;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
|
||||||
.egw_tutorial_thumb:hover [id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn,
|
|
||||||
.egw_tutorial_thumb:hover #home-tutorial_play.egw_tutorial_playBtn {
|
|
||||||
background-color: #FF0000;
|
|
||||||
opacity: 0.68;
|
|
||||||
}
|
|
||||||
.egw_tutorial_thumb:hover [id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn > div,
|
|
||||||
.egw_tutorial_thumb:hover #home-tutorial_play.egw_tutorial_playBtn > div {
|
|
||||||
border-left-color: white;
|
|
||||||
}
|
|
||||||
.egw_tutorial_thumb {
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: -2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
[id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn,
|
|
||||||
#home-tutorial_play.egw_tutorial_playBtn {
|
|
||||||
display: block;
|
|
||||||
margin: 10%;
|
|
||||||
border: 2px solid rgba(0, 0, 0, 0.7);
|
|
||||||
-webkit-border-radius: 100%;
|
|
||||||
-moz-border-radius: 100%;
|
|
||||||
border-radius: 100%;
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
[id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn > div,
|
|
||||||
#home-tutorial_play.egw_tutorial_playBtn > div {
|
|
||||||
display: block;
|
|
||||||
position: relative;
|
|
||||||
top: 10px;
|
|
||||||
left: 45%;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-top: 10px solid transparent;
|
|
||||||
border-bottom: 10px solid transparent;
|
|
||||||
border-left: 10px solid rgba(0, 0, 0, 0.8);
|
|
||||||
}
|
|
||||||
[id^="egw_tutorial_"][id$="sidebox_list"] {
|
|
||||||
overflow-x: hidden;
|
|
||||||
overflow-y: auto;
|
|
||||||
max-height: 200px;
|
|
||||||
}
|
|
||||||
#list_grid_wrapper {
|
|
||||||
max-height: 200px;
|
|
||||||
}
|
|
||||||
#home-tutorial_list {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
#home-tutorial_list .egw_tutorial_thumb {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
#home-tutorial_list .th .et2_label {
|
|
||||||
font-size: 12px;
|
|
||||||
padding-left: 7px;
|
|
||||||
}
|
|
||||||
#home-tutorial_list .th #home-tutorial_apps {
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
#home-tutorial_list tbody td:first-child {
|
|
||||||
padding-top: 4px;
|
|
||||||
}
|
|
||||||
#home-tutorial_src {
|
|
||||||
border-left: 6px solid #E0E0E0;
|
|
||||||
}
|
|
||||||
.tutorial_popup {
|
|
||||||
background-color: white;
|
|
||||||
padding-top: 5px;
|
|
||||||
overflow-y: hidden;
|
|
||||||
}
|
|
||||||
.tutorial_videoList {
|
|
||||||
overflow-x: hidden;
|
|
||||||
overflow-y: auto;
|
|
||||||
height: 100%;
|
|
||||||
display: inline-block !important;
|
|
||||||
}
|
|
||||||
div.tutorial_iframe_wrapper {
|
|
||||||
position: absolute;
|
|
||||||
left: 225px;
|
|
||||||
right: 12px;
|
|
||||||
height: 90%;
|
|
||||||
}
|
|
||||||
span.egw_tutorial_title {
|
span.egw_tutorial_title {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -598,26 +598,6 @@
|
|||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
/**
|
/**
|
||||||
* Validation
|
|
||||||
*/
|
|
||||||
.et2_required,
|
|
||||||
[required]::part(base) {
|
|
||||||
background-color: #FFDD73;
|
|
||||||
-webkit-border-top-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-left-radius: 3px;
|
|
||||||
-webkit-border-top-left-radius: 3px;
|
|
||||||
-moz-border-radius-topright: 3px;
|
|
||||||
-moz-border-radius-bottomright: 3px;
|
|
||||||
-moz-border-radius-bottomleft: 3px;
|
|
||||||
-moz-border-radius-topleft: 3px;
|
|
||||||
border-top-right-radius: 3px;
|
|
||||||
border-bottom-right-radius: 3px;
|
|
||||||
border-bottom-left-radius: 3px;
|
|
||||||
border-top-left-radius: 3px;
|
|
||||||
/*.background-clip(padding-box);*/
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* hrule widget
|
* hrule widget
|
||||||
*/
|
*/
|
||||||
hr {
|
hr {
|
||||||
|
@ -434,14 +434,6 @@ div.et2_file input.et2_file_upload{
|
|||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Validation
|
|
||||||
*/
|
|
||||||
.et2_required, [required]::part(base) {
|
|
||||||
background-color: @egw_color_1_e;
|
|
||||||
.border_radius (3px, 3px ,3px ,3px );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* hrule widget
|
* hrule widget
|
||||||
*/
|
*/
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
html[data-darkmode='2'] {
|
html[data-darkmode='2'] {
|
||||||
background: #000;
|
background: #000;
|
||||||
filter: invert(1) hue-rotate(180deg) brightness(0.7);
|
filter: invert(1) hue-rotate(180deg) brightness(1);
|
||||||
}
|
}
|
||||||
html[data-darkmode='2'] #loginMainDiv {
|
html[data-darkmode='2'] #loginMainDiv {
|
||||||
filter: invert(1) hue-rotate(180deg) !important;
|
filter: invert(1) hue-rotate(180deg) !important;
|
||||||
@ -38,8 +38,13 @@
|
|||||||
@media all {
|
@media all {
|
||||||
html[data-darkmode='1'] {
|
html[data-darkmode='1'] {
|
||||||
background: #000;
|
background: #000;
|
||||||
filter: invert(1) hue-rotate(180deg) brightness(0.7);
|
filter: invert(1) hue-rotate(180deg) brightness(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-darkmode='1'] sl-menu-item::part(prefix),
|
||||||
|
html[data-darkmode='1'] et2-select-country::part(prefix),
|
||||||
|
html[data-darkmode='1'] et2-email-tag::part(prefix),
|
||||||
|
html[data-darkmode='1'] et2-button::part(prefix),
|
||||||
html[data-darkmode='1'] *::part(image),
|
html[data-darkmode='1'] *::part(image),
|
||||||
html[data-darkmode='1'] img,
|
html[data-darkmode='1'] img,
|
||||||
html[data-darkmode='1'] #blueimp-gallery:not(:fullscreen),
|
html[data-darkmode='1'] #blueimp-gallery:not(:fullscreen),
|
||||||
@ -52,13 +57,20 @@
|
|||||||
html[data-darkmode='1'] .et2_taglist_tags_icon {
|
html[data-darkmode='1'] .et2_taglist_tags_icon {
|
||||||
filter: invert(1) hue-rotate(180deg) !important;
|
filter: invert(1) hue-rotate(180deg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-darkmode='1'] .dtree img {
|
||||||
|
filter: invert(0) hue-rotate(180deg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] #blueimp-gallery video,
|
html[data-darkmode='1'] #blueimp-gallery video,
|
||||||
html[data-darkmode='1'] #blueimp-gallery .video-content {
|
html[data-darkmode='1'] #blueimp-gallery .video-content {
|
||||||
filter: invert(0) hue-rotate(180deg) !important;
|
filter: invert(0) hue-rotate(180deg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] #loginMainDiv div#centerBox {
|
html[data-darkmode='1'] #loginMainDiv div#centerBox {
|
||||||
filter: invert(1) hue-rotate(180deg) !important;
|
filter: invert(1) hue-rotate(180deg) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] div.dhtmlxMenu_egw_SubLevelArea_Polygon,
|
html[data-darkmode='1'] div.dhtmlxMenu_egw_SubLevelArea_Polygon,
|
||||||
html[data-darkmode='1'] .egw_tooltip,
|
html[data-darkmode='1'] .egw_tooltip,
|
||||||
html[data-darkmode='1'] body .egw_message_wrapper,
|
html[data-darkmode='1'] body .egw_message_wrapper,
|
||||||
@ -71,6 +83,7 @@
|
|||||||
-webkit-box-shadow: 0px 0px 2px 2px #666666;
|
-webkit-box-shadow: 0px 0px 2px 2px #666666;
|
||||||
-khtml-box-shadow: 0px 0px 2px 2px #666666;
|
-khtml-box-shadow: 0px 0px 2px 2px #666666;
|
||||||
}
|
}
|
||||||
|
|
||||||
html[data-darkmode='1'] #calendar_sidebox_header.egw_fw_ui_sidemenu_entry_header_active,
|
html[data-darkmode='1'] #calendar_sidebox_header.egw_fw_ui_sidemenu_entry_header_active,
|
||||||
html[data-darkmode='1'] #calendar_sidebox_header {
|
html[data-darkmode='1'] #calendar_sidebox_header {
|
||||||
border-color: #ff9dca !important;
|
border-color: #ff9dca !important;
|
||||||
@ -612,26 +625,6 @@
|
|||||||
}
|
}
|
||||||
}*/
|
}*/
|
||||||
/**
|
/**
|
||||||
* Validation
|
|
||||||
*/
|
|
||||||
.et2_required,
|
|
||||||
[required]::part(base) {
|
|
||||||
background-color: #FFDD73;
|
|
||||||
-webkit-border-top-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-right-radius: 3px;
|
|
||||||
-webkit-border-bottom-left-radius: 3px;
|
|
||||||
-webkit-border-top-left-radius: 3px;
|
|
||||||
-moz-border-radius-topright: 3px;
|
|
||||||
-moz-border-radius-bottomright: 3px;
|
|
||||||
-moz-border-radius-bottomleft: 3px;
|
|
||||||
-moz-border-radius-topleft: 3px;
|
|
||||||
border-top-right-radius: 3px;
|
|
||||||
border-bottom-right-radius: 3px;
|
|
||||||
border-bottom-left-radius: 3px;
|
|
||||||
border-top-left-radius: 3px;
|
|
||||||
/*.background-clip(padding-box);*/
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* hrule widget
|
* hrule widget
|
||||||
*/
|
*/
|
||||||
hr {
|
hr {
|
||||||
@ -748,7 +741,7 @@
|
|||||||
width: 50% !important;
|
width: 50% !important;
|
||||||
}
|
}
|
||||||
.nextmatch_header > .filters > select > option {
|
.nextmatch_header > .filters > select > option {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.nextmatch_header > .filters input {
|
.nextmatch_header > .filters input {
|
||||||
margin-right: 2ex;
|
margin-right: 2ex;
|
||||||
@ -946,12 +939,12 @@
|
|||||||
background-size: 12px 12px;
|
background-size: 12px 12px;
|
||||||
background-position: 1px 0;
|
background-position: 1px 0;
|
||||||
margin-right: 9px;
|
margin-right: 9px;
|
||||||
margin-left: 4px;
|
margin-left: 3px;
|
||||||
}
|
}
|
||||||
.sidebox-favorites ul.favorites li.ui-menu-item a div.sideboxstar {
|
.sidebox-favorites ul.favorites li.ui-menu-item a div.sideboxstar {
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
margin-left: 5px;
|
margin-left: 4px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
background-image: url(../../api/templates/default/images/fav_filter.svg);
|
background-image: url(../../api/templates/default/images/fav_filter.svg);
|
||||||
background-size: 12px 12px;
|
background-size: 12px 12px;
|
||||||
@ -1196,7 +1189,7 @@ option:checked {
|
|||||||
/* Component containers
|
/* Component containers
|
||||||
----------------------------------*/
|
----------------------------------*/
|
||||||
.ui-widget {
|
.ui-widget {
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
.ui-widget .ui-widget {
|
.ui-widget .ui-widget {
|
||||||
@ -1206,8 +1199,8 @@ option:checked {
|
|||||||
.ui-widget select,
|
.ui-widget select,
|
||||||
.ui-widget textarea,
|
.ui-widget textarea,
|
||||||
.ui-widget button {
|
.ui-widget button {
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
.ui-widget-content {
|
.ui-widget-content {
|
||||||
/*.bordered (@color-hint,@color-hint,@color-hint,@color-hint);*/
|
/*.bordered (@color-hint,@color-hint,@color-hint,@color-hint);*/
|
||||||
@ -1844,7 +1837,7 @@ body {
|
|||||||
padding: 0px !important;
|
padding: 0px !important;
|
||||||
width: 99.9%;
|
width: 99.9%;
|
||||||
height: 99.9% !important;
|
height: 99.9% !important;
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
line-height: 1.28;
|
line-height: 1.28;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -2249,7 +2242,7 @@ div#loginMainDiv.stockLoginBackground div#centerBox form {
|
|||||||
#loginMainDiv div#centerBox form table.divLoginbox select.onChangeSubmit {
|
#loginMainDiv div#centerBox form table.divLoginbox select.onChangeSubmit {
|
||||||
background-color: #4177A2;
|
background-color: #4177A2;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
font-size: 20px;
|
font-size: 22px;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
@ -2258,7 +2251,7 @@ div#loginMainDiv.stockLoginBackground div#centerBox form {
|
|||||||
padding-left: 25px;
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
#loginMainDiv div#centerBox form table.divLoginbox .registration {
|
#loginMainDiv div#centerBox form table.divLoginbox .registration {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
#loginMainDiv div#centerBox form table.divLoginbox .registration a:not(:first-child):before {
|
#loginMainDiv div#centerBox form table.divLoginbox .registration a:not(:first-child):before {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
@ -2990,7 +2983,7 @@ div.client_error_log tr td.stack > div {
|
|||||||
body,
|
body,
|
||||||
textarea,
|
textarea,
|
||||||
button {
|
button {
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
}
|
}
|
||||||
#egw_fw_basecontainer {
|
#egw_fw_basecontainer {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -2998,7 +2991,7 @@ button {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
input {
|
input {
|
||||||
@ -3302,7 +3295,7 @@ table.dialog-main-view {
|
|||||||
/********** Header Part ********************/
|
/********** Header Part ********************/
|
||||||
.dialogHeader {
|
.dialogHeader {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
border-bottom: 3px solid #696969;
|
border-bottom: 2px solid #696969;
|
||||||
}
|
}
|
||||||
.dialogHeader input[type="radio"],
|
.dialogHeader input[type="radio"],
|
||||||
.dialogHeader input.et2_radiobox {
|
.dialogHeader input.et2_radiobox {
|
||||||
@ -3475,7 +3468,7 @@ div#etemplate\.tab_widget {
|
|||||||
/*##############################################*/
|
/*##############################################*/
|
||||||
.dialogFooterToolbar {
|
.dialogFooterToolbar {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-top: 3px solid #696969;
|
border-top: 2px solid #696969;
|
||||||
/*.et2_selectbox {height: 32px; top: 0px; font-size: 1em;}*/
|
/*.et2_selectbox {height: 32px; top: 0px; font-size: 1em;}*/
|
||||||
}
|
}
|
||||||
.dialogFooterToolbar td {
|
.dialogFooterToolbar td {
|
||||||
@ -4372,63 +4365,61 @@ span.overlayContainer img.overlay {
|
|||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 11px;
|
|
||||||
padding-left: 26px;
|
padding-left: 26px;
|
||||||
line-height: 1.5em;
|
line-height: 1.9em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a:hover {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li a:hover {
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:first-child :before {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul li:first-child :before {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a {
|
||||||
|
background-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_home {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_home {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/home.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/home.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_prefs {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_prefs {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/setup.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/setup.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_acl {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_acl {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/access.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/access.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_cats {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_cats {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/category.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/category.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_password {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_password {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/password.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/password.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_manual {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_manual {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/help.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/help.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_current_user {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_current_user {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/users.png);
|
background-image: url(../../api/templates/default/images/users.png);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_logout {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_logout {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/topmenu_items/logout.svg);
|
background-image: url(../../api/templates/default/images/topmenu_items/logout.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_print {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_print {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 16px;
|
|
||||||
background-image: url(../../api/templates/default/images/print.svg);
|
background-image: url(../../api/templates/default/images/print.svg);
|
||||||
}
|
}
|
||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items .timezone span {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items .timezone span {
|
||||||
@ -4600,7 +4591,7 @@ span.overlayContainer img.overlay {
|
|||||||
top: 8px;
|
top: 8px;
|
||||||
}
|
}
|
||||||
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
|
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
margin: 0 15px 2px 2px;
|
margin: 0 15px 2px 2px;
|
||||||
vertical-align: super;
|
vertical-align: super;
|
||||||
@ -4730,7 +4721,7 @@ span.overlayContainer img.overlay {
|
|||||||
padding-left: 3em;
|
padding-left: 3em;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
/*font-size: 12px;*/
|
/*font-size: 12px;*/
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
line-height: 17px;
|
line-height: 17px;
|
||||||
}
|
}
|
||||||
#egw_fw_sidebar #egw_fw_sidemenu .egw_fw_ui_sidemenu_entry_header object {
|
#egw_fw_sidebar #egw_fw_sidemenu .egw_fw_ui_sidemenu_entry_header object {
|
||||||
@ -4850,7 +4841,7 @@ span.overlayContainer img.overlay {
|
|||||||
margin: 5px 0px 3px 5px;
|
margin: 5px 0px 3px 5px;
|
||||||
padding: 0px 0px 0px 24px;
|
padding: 0px 0px 0px 24px;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
background-image: url(../../api/templates/default/images/arrow_right.svg);
|
background-image: url(../../api/templates/default/images/arrow_right.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
@ -5104,7 +5095,6 @@ span.overlayContainer img.overlay {
|
|||||||
position: relative;
|
position: relative;
|
||||||
min-height: 18px;
|
min-height: 18px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
overflow-x: hidden;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
@ -5117,7 +5107,7 @@ span.overlayContainer img.overlay {
|
|||||||
width: 12px;
|
width: 12px;
|
||||||
height: 12px;
|
height: 12px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
margin: 0px 6px;
|
margin: 0px 5px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.egw_fw_ui_sidemenu_listitem input {
|
.egw_fw_ui_sidemenu_listitem input {
|
||||||
@ -5322,31 +5312,23 @@ span.overlayContainer img.overlay {
|
|||||||
width: 45px;
|
width: 45px;
|
||||||
border-left: 1px solid #bfc0bf;
|
border-left: 1px solid #bfc0bf;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-left: 3px;
|
padding-left: 0px;
|
||||||
float: right;
|
float: right;
|
||||||
background-size: 20px;
|
background-size: 20px;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_topmenu_info_items .topmenu_info_item:hover {
|
#egw_fw_topmenu_info_items .topmenu_info_item:hover {
|
||||||
background-color: rgba(153, 204, 255, 0.4);
|
background-color: rgba(153, 204, 255, 0.4);
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span {
|
|
||||||
height: 40px;
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.fw_avatar_stat {
|
||||||
width: 40px;
|
|
||||||
display: inline-block;
|
|
||||||
border: none;
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-left: 1px;
|
|
||||||
}
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span img {
|
|
||||||
width: 40px;
|
|
||||||
}
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.fw_avatar_stat {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.stat1 {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.stat1 {
|
||||||
width: 14px;
|
width: 14px;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -5363,27 +5345,35 @@ span.overlayContainer img.overlay {
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
border: 2px solid #fbfbfb;
|
border: 2px solid #fbfbfb;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.online {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.online {
|
||||||
background-color: #2de0a5;
|
background-color: #2de0a5;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.offline {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.offline {
|
||||||
background-color: #cbced1;
|
background-color: #cbced1;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.away {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.away {
|
||||||
background-color: #ffd21f;
|
background-color: #ffd21f;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.busy {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.busy {
|
||||||
background-color: #f5455c;
|
background-color: #f5455c;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.noconnection {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.noconnection {
|
||||||
background-color: #E1E16D;
|
background-color: #E1E16D;
|
||||||
}
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span span.noconnection:before {
|
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_user_avatar span.noconnection:before {
|
||||||
content: "!";
|
content: "!";
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_logout {
|
#egw_fw_topmenu_info_items #topmenu_info_logout {
|
||||||
background-image: url(../../api/templates/default/images/logout.svg);
|
background-image: url(../../api/templates/default/images/logout.svg);
|
||||||
}
|
}
|
||||||
|
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_logout a {
|
#egw_fw_topmenu_info_items #topmenu_info_logout a {
|
||||||
width: 45px;
|
width: 45px;
|
||||||
height: 45px;
|
height: 45px;
|
||||||
@ -5734,7 +5724,7 @@ button.image_button {
|
|||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-family: Verdana, "Lucida Grande", Helvetica, Sans-Serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@ -5920,7 +5910,6 @@ button.image_button {
|
|||||||
table.egwGridView_outer {
|
table.egwGridView_outer {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border-spacing: 0px;
|
border-spacing: 0px;
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
}
|
||||||
table.egwGridView_outer thead {
|
table.egwGridView_outer thead {
|
||||||
max-height: 118px;
|
max-height: 118px;
|
||||||
@ -5938,7 +5927,7 @@ table.egwGridView_outer thead tr th {
|
|||||||
background-color: #f8f8f8;
|
background-color: #f8f8f8;
|
||||||
}
|
}
|
||||||
table.egwGridView_outer thead tr th:hover {
|
table.egwGridView_outer thead tr th:hover {
|
||||||
background-color: #bfbfbf;
|
background-color: #f0f0f0;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
/*border-right: 5px solid white;*/
|
/*border-right: 5px solid white;*/
|
||||||
background-image: url(../../api/templates/default/images/hint-arrow-right.png);
|
background-image: url(../../api/templates/default/images/hint-arrow-right.png);
|
||||||
@ -6193,29 +6182,14 @@ input[type=button],
|
|||||||
input[type=reset],
|
input[type=reset],
|
||||||
button,
|
button,
|
||||||
.egwbutton {
|
.egwbutton {
|
||||||
background-color: #f0f0f0;
|
|
||||||
background-image: none;
|
|
||||||
border: outset 1px #b9d5e3;
|
|
||||||
margin: 1px;
|
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: #004e7d;
|
|
||||||
}
|
}
|
||||||
input[type=submit] {
|
input[type=submit] {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
input[type=submit]:hover,
|
|
||||||
input[type=button]:hover,
|
|
||||||
input[type=reset]:hover,
|
|
||||||
button:hover,
|
|
||||||
.egwbutton:hover {
|
|
||||||
background-color: #d9d9d9 !important;
|
|
||||||
background-image: none;
|
|
||||||
border: outset 1px #b9d5e3;
|
|
||||||
color: #004e7d;
|
|
||||||
}
|
|
||||||
input[type=submit]:active,
|
input[type=submit]:active,
|
||||||
input[type=button]:active,
|
input[type=button]:active,
|
||||||
input[type=reset]:active,
|
input[type=reset]:active,
|
||||||
@ -6523,117 +6497,6 @@ a.textSidebox {
|
|||||||
* @package pixelegg
|
* @package pixelegg
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
/**
|
|
||||||
* EGroupware: CSS with less preprocessor
|
|
||||||
*
|
|
||||||
* Definitions for tutorials
|
|
||||||
*
|
|
||||||
* Please do NOT change css-files directly, instead change less-files and compile them!
|
|
||||||
*
|
|
||||||
* @link http://www.egroupware.org
|
|
||||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
||||||
* @author Hadi NAtegh <hn@stylite.de>
|
|
||||||
* @package phpgwapi
|
|
||||||
* @version $Id$
|
|
||||||
*/
|
|
||||||
span.egw_tutorial_title {
|
|
||||||
color: black;
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: left;
|
|
||||||
width: 99%;
|
|
||||||
background-color: #D6DEF0;
|
|
||||||
border: 1px solid #B3B3B3;
|
|
||||||
padding-top: 4px;
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
border-radius: 2px;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
|
||||||
.egw_tutorial_thumb:hover [id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn,
|
|
||||||
.egw_tutorial_thumb:hover #home-tutorial_play.egw_tutorial_playBtn {
|
|
||||||
background-color: #FF0000;
|
|
||||||
opacity: 0.68;
|
|
||||||
}
|
|
||||||
.egw_tutorial_thumb:hover [id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn > div,
|
|
||||||
.egw_tutorial_thumb:hover #home-tutorial_play.egw_tutorial_playBtn > div {
|
|
||||||
border-left-color: white;
|
|
||||||
}
|
|
||||||
.egw_tutorial_thumb {
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: -2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
[id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn,
|
|
||||||
#home-tutorial_play.egw_tutorial_playBtn {
|
|
||||||
display: block;
|
|
||||||
margin: 10%;
|
|
||||||
border: 2px solid rgba(0, 0, 0, 0.7);
|
|
||||||
-webkit-border-radius: 100%;
|
|
||||||
-moz-border-radius: 100%;
|
|
||||||
border-radius: 100%;
|
|
||||||
width: 40px;
|
|
||||||
height: 40px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
[id^="egw_tutorial_"][id$="_play"].egw_tutorial_playBtn > div,
|
|
||||||
#home-tutorial_play.egw_tutorial_playBtn > div {
|
|
||||||
display: block;
|
|
||||||
position: relative;
|
|
||||||
top: 10px;
|
|
||||||
left: 45%;
|
|
||||||
width: 0;
|
|
||||||
height: 0;
|
|
||||||
border-top: 10px solid transparent;
|
|
||||||
border-bottom: 10px solid transparent;
|
|
||||||
border-left: 10px solid rgba(0, 0, 0, 0.8);
|
|
||||||
}
|
|
||||||
[id^="egw_tutorial_"][id$="sidebox_list"] {
|
|
||||||
overflow-x: hidden;
|
|
||||||
overflow-y: auto;
|
|
||||||
max-height: 200px;
|
|
||||||
}
|
|
||||||
#list_grid_wrapper {
|
|
||||||
max-height: 200px;
|
|
||||||
}
|
|
||||||
#home-tutorial_list {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
#home-tutorial_list .egw_tutorial_thumb {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
#home-tutorial_list .th .et2_label {
|
|
||||||
font-size: 12px;
|
|
||||||
padding-left: 7px;
|
|
||||||
}
|
|
||||||
#home-tutorial_list .th #home-tutorial_apps {
|
|
||||||
margin-left: 5px;
|
|
||||||
}
|
|
||||||
#home-tutorial_list tbody td:first-child {
|
|
||||||
padding-top: 4px;
|
|
||||||
}
|
|
||||||
#home-tutorial_src {
|
|
||||||
border-left: 6px solid #E0E0E0;
|
|
||||||
}
|
|
||||||
.tutorial_popup {
|
|
||||||
background-color: white;
|
|
||||||
padding-top: 5px;
|
|
||||||
overflow-y: hidden;
|
|
||||||
}
|
|
||||||
.tutorial_videoList {
|
|
||||||
overflow-x: hidden;
|
|
||||||
overflow-y: auto;
|
|
||||||
height: 100%;
|
|
||||||
display: inline-block !important;
|
|
||||||
}
|
|
||||||
div.tutorial_iframe_wrapper {
|
|
||||||
position: absolute;
|
|
||||||
left: 225px;
|
|
||||||
right: 12px;
|
|
||||||
height: 90%;
|
|
||||||
}
|
|
||||||
span.egw_tutorial_title {
|
span.egw_tutorial_title {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -6974,7 +6837,7 @@ span.egw_tutorial_title {
|
|||||||
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_calls {
|
#egw_fw_header #egw_fw_topmenu #egw_fw_topmenu_items ul a#topmenu_calls {
|
||||||
background-image: url(../../api/templates/default/images/phone.svg);
|
background-image: url(../../api/templates/default/images/phone.svg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 18px;
|
background-size: 20px;
|
||||||
background-position-x: -2px;
|
background-position-x: -2px;
|
||||||
}
|
}
|
||||||
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item td.sub_item_icon img[src*="svg"] {
|
div.dhtmlxMenu_egw_SubLevelArea_Polygon table.dhtmlxMebu_SubLevelArea_Tbl tr.sub_item td.sub_item_icon img[src*="svg"] {
|
||||||
@ -7348,7 +7211,7 @@ img.et2_button_icon[src*="svg"]:hover {
|
|||||||
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
|
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
|
||||||
}
|
}
|
||||||
body .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
|
body .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
|
||||||
font-size: 14px;
|
font-size: 16px;
|
||||||
line-height: 1em;
|
line-height: 1em;
|
||||||
margin: 0 15px 2px 2px;
|
margin: 0 15px 2px 2px;
|
||||||
vertical-align: super;
|
vertical-align: super;
|
||||||
@ -7468,7 +7331,7 @@ img.et2_button_icon[src*="svg"]:hover {
|
|||||||
padding-top: 0.31em;
|
padding-top: 0.31em;
|
||||||
padding-left: 3em;
|
padding-left: 3em;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
font-size: 14px;
|
font-size: 16px;
|
||||||
line-height: 17px;
|
line-height: 17px;
|
||||||
}
|
}
|
||||||
body #egw_fw_sidebar #egw_fw_sidemenu .egw_fw_ui_sidemenu_entry_apps .egw_fw_ui_sidemenu_entry_header object {
|
body #egw_fw_sidebar #egw_fw_sidemenu .egw_fw_ui_sidemenu_entry_apps .egw_fw_ui_sidemenu_entry_header object {
|
||||||
|
Loading…
Reference in New Issue
Block a user