Apply new style for row selection and hover

This commit is contained in:
Hadi Nategh 2019-04-03 11:26:32 +02:00
parent b246555e3c
commit 08ac18c4db
17 changed files with 97 additions and 96 deletions

View File

@ -24,7 +24,7 @@
div.dhtmlxTree {
// selected Item
td.standartTreeRow {
span.selectedTreeRow { background-color: @egw_color_1_e; color: @gray_90;}
span.selectedTreeRow { background-color: @color_selected_row; color: @gray_90;}
}
}
/* #############################################################################

View File

@ -2634,7 +2634,7 @@ div#calendar-container div.calendar table tbody tr.rowhilite td {
background-color: #FFDD73;
}
#calendar-sidebox_date .ui-datepicker-calendar .ui-state-hover {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
}
#calendar-sidebox_date .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
right: 2px;

View File

@ -2622,7 +2622,7 @@ div#calendar-container div.calendar table tbody tr.rowhilite td {
background-color: #FFDD73;
}
#calendar-sidebox_date .ui-datepicker-calendar .ui-state-hover {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
}
#calendar-sidebox_date .ui-datepicker-header .ui-datepicker-next.ui-state-hover {
right: 2px;

View File

@ -1062,12 +1062,12 @@ body {
}
.egw_fw_ui_category_content .selectedTreeRow,
.egw_fw_ui_category_content .selectedTreeRow_lor {
background-color: #FFDD73;
background-color: rgba(102, 153, 204, 0.7);
color: #1E1E1E;
text-decoration: none;
}
.egw_fw_ui_category_content .standartTreeRow_lor {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
color: #1E1E1E;
text-decoration: none;
}
@ -1117,7 +1117,7 @@ body {
#mail-compose #mail-compose_composeToolbar button#composeToolbar-to_tracker:hover,
#mail-compose #mail-compose_composeToolbar button#composeToolbar-disposition:hover,
#mail-compose #mail-compose_composeToolbar button#composeToolbar-to_calendar:hover {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#mail-compose table.et2_grid {
display: inline-block;
@ -1501,13 +1501,13 @@ div#displayToolbar-menulist img {
#mail-folder_management .selectedTreeRow,
#mail-subscribe .selectedTreeRow_lor,
#mail-folder_management .selectedTreeRow_lor {
background-color: #FFDD73;
background-color: rgba(102, 153, 204, 0.7);
color: #1E1E1E;
text-decoration: none;
}
#mail-subscribe .standartTreeRow_lor,
#mail-folder_management .standartTreeRow_lor {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
color: #1E1E1E;
text-decoration: none;
}

View File

@ -1050,12 +1050,12 @@ body {
}
.egw_fw_ui_category_content .selectedTreeRow,
.egw_fw_ui_category_content .selectedTreeRow_lor {
background-color: #FFDD73;
background-color: rgba(102, 153, 204, 0.7);
color: #1E1E1E;
text-decoration: none;
}
.egw_fw_ui_category_content .standartTreeRow_lor {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
color: #1E1E1E;
text-decoration: none;
}
@ -1105,7 +1105,7 @@ body {
#mail-compose #mail-compose_composeToolbar button#composeToolbar-to_tracker:hover,
#mail-compose #mail-compose_composeToolbar button#composeToolbar-disposition:hover,
#mail-compose #mail-compose_composeToolbar button#composeToolbar-to_calendar:hover {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#mail-compose table.et2_grid {
display: inline-block;
@ -1489,13 +1489,13 @@ div#displayToolbar-menulist img {
#mail-folder_management .selectedTreeRow,
#mail-subscribe .selectedTreeRow_lor,
#mail-folder_management .selectedTreeRow_lor {
background-color: #FFDD73;
background-color: rgba(102, 153, 204, 0.7);
color: #1E1E1E;
text-decoration: none;
}
#mail-subscribe .standartTreeRow_lor,
#mail-folder_management .standartTreeRow_lor {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
color: #1E1E1E;
text-decoration: none;
}

View File

@ -158,9 +158,9 @@ body {
}
// color - selected tree item
.selectedTreeRow, .selectedTreeRow_lor {background-color: @egw_color_1_e; color: @gray_90;text-decoration: none;}
.selectedTreeRow, .selectedTreeRow_lor {background-color: @color_selected_row; color: @gray_90;text-decoration: none;}
.standartTreeRow_lor {background-color: rgba(103, 159, 210, 0.2); color: @gray_90;text-decoration: none;}
.standartTreeRow_lor {background-color: @color_hover_row; color: @gray_90;text-decoration: none;}
} // Ende Sidebox
/* ##################################################################################
@ -223,7 +223,7 @@ body {
button#composeToolbar-to_tracker:hover,
button#composeToolbar-disposition:hover,
button#composeToolbar-to_calendar:hover {
background-color: @egw_color_1_e;;
background-color: @color_hover_row;;
}
} // Toolbar Ende
@ -591,9 +591,9 @@ div#displayToolbar-menulist {
}
}
// color - selected tree item
.selectedTreeRow,.selectedTreeRow_lor {background-color: @egw_color_1_e; color: @gray_90;text-decoration: none;}
.selectedTreeRow,.selectedTreeRow_lor {background-color: @color_selected_row; color: @gray_90;text-decoration: none;}
// color - hover over standard tree item
.standartTreeRow_lor {background-color: rgba(103, 159, 210, 0.2); color: @gray_90;text-decoration: none;}
.standartTreeRow_lor {background-color: @color_hover_row; color: @gray_90;text-decoration: none;}
} // #mail-subscribe
.mail_subscription_header, .mail_folder_management_header

View File

@ -370,7 +370,7 @@
cursor: pointer;
}
.et2_link_list tr:hover {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
}
.et2_link_list tr:active {
background-color: rgba(255, 194, 0, 0.01);
@ -1065,13 +1065,13 @@
* @version $Id$
*/
#uical_select_resource {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.uiaccountselection .primary_group {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
option:checked {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.ui-tooltip {
padding: 8px;
@ -3067,7 +3067,7 @@ tr.dialogHeader4 .et2_label {
.et2_tabflag:hover,
.etemplate_tab > div:hover,
.etemplate_tab_active > div:hover {
background-color: #f0f0f0;
background-color: rgba(153, 204, 255, 0.4);
border: none;
border-bottom: 3px solid #696969;
border-top-left-radius: 5px;
@ -4224,7 +4224,7 @@ td.message span.message {
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header:hover {
/*.background_color_20_gray ;*/
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
/*font-size: 100%;*/
@ -4276,7 +4276,7 @@ td.message span.message {
/*aktive Objekte*/
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active:hover {
background-color: #bfbfbf;
background-color: #ffffff;
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active img.egw_fw_ui_tab_icon {
display: inline-block;
@ -4316,7 +4316,7 @@ td.message span.message {
position: absolute;
}
#egw_fw_main .egw_fw_ui_tab_header_hover {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main .egw_fw_ui_tab_content {
width: 100%;
@ -4756,7 +4756,7 @@ td.message span.message {
}
.egw_fw_ui_sidemenu_listitem:hover {
color: #000000;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.egw_fw_ui_sidemenu_listitem img.egw_fw_ui_sidemenu_listitem_icon {
/*display: none;*/
@ -5598,15 +5598,14 @@ table.egwGridView_grid tbody {
/*multiple choise*/
}
table.egwGridView_grid tbody tr:hover {
background: rgba(103, 159, 210, 0.2);
background: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid tbody tr.th:hover {
background: transparent;
}
table.egwGridView_grid tbody tr.selected {
background-image: none;
/*background-color: @egw_color_1_e !important;*/
background-color: rgba(255, 194, 0, 0.5);
background-color: rgba(102, 153, 204, 0.7);
}
table.egwGridView_grid tbody td {
border-bottom: 1px solid #E6E6E6;
@ -5664,19 +5663,19 @@ table.egwGridView_grid > tr > td span.high {
}
table.egwGridView_grid > tr > td span.urgent {
color: red;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid > tr > td span.low {
color: #373737;
}
table.egwGridView_grid tr.subentry {
background: rgba(255, 221, 115, 0.2);
background: rgba(102, 153, 204, 0.2);
}
table.egwGridView_grid tr.subentry:hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid tr.drop-hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid span.arrow {
-moz-user-select: none;

View File

@ -359,7 +359,7 @@
cursor: pointer;
}
.et2_link_list tr:hover {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
}
.et2_link_list tr:active {
background-color: rgba(255, 194, 0, 0.01);
@ -1054,13 +1054,13 @@
* @version $Id$
*/
#uical_select_resource {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.uiaccountselection .primary_group {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
option:checked {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.ui-tooltip {
padding: 8px;
@ -3056,7 +3056,7 @@ tr.dialogHeader4 .et2_label {
.et2_tabflag:hover,
.etemplate_tab > div:hover,
.etemplate_tab_active > div:hover {
background-color: #f0f0f0;
background-color: rgba(153, 204, 255, 0.4);
border: none;
border-bottom: 3px solid #696969;
border-top-left-radius: 5px;
@ -4213,7 +4213,7 @@ td.message span.message {
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header:hover {
/*.background_color_20_gray ;*/
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
/*font-size: 100%;*/
@ -4265,7 +4265,7 @@ td.message span.message {
/*aktive Objekte*/
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active:hover {
background-color: #bfbfbf;
background-color: #ffffff;
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active img.egw_fw_ui_tab_icon {
display: inline-block;
@ -4305,7 +4305,7 @@ td.message span.message {
position: absolute;
}
#egw_fw_main .egw_fw_ui_tab_header_hover {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main .egw_fw_ui_tab_content {
width: 100%;
@ -4745,7 +4745,7 @@ td.message span.message {
}
.egw_fw_ui_sidemenu_listitem:hover {
color: #000000;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.egw_fw_ui_sidemenu_listitem img.egw_fw_ui_sidemenu_listitem_icon {
/*display: none;*/
@ -5587,15 +5587,14 @@ table.egwGridView_grid tbody {
/*multiple choise*/
}
table.egwGridView_grid tbody tr:hover {
background: rgba(103, 159, 210, 0.2);
background: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid tbody tr.th:hover {
background: transparent;
}
table.egwGridView_grid tbody tr.selected {
background-image: none;
/*background-color: @egw_color_1_e !important;*/
background-color: rgba(255, 194, 0, 0.5);
background-color: rgba(102, 153, 204, 0.7);
}
table.egwGridView_grid tbody td {
border-bottom: 1px solid #E6E6E6;
@ -5653,19 +5652,19 @@ table.egwGridView_grid > tr > td span.high {
}
table.egwGridView_grid > tr > td span.urgent {
color: red;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid > tr > td span.low {
color: #373737;
}
table.egwGridView_grid tr.subentry {
background: rgba(255, 221, 115, 0.2);
background: rgba(102, 153, 204, 0.2);
}
table.egwGridView_grid tr.subentry:hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid tr.drop-hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid span.arrow {
-moz-user-select: none;

View File

@ -370,7 +370,7 @@
cursor: pointer;
}
.et2_link_list tr:hover {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
}
.et2_link_list tr:active {
background-color: rgba(255, 194, 0, 0.01);
@ -1065,13 +1065,13 @@
* @version $Id$
*/
#uical_select_resource {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.uiaccountselection .primary_group {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
option:checked {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.ui-tooltip {
padding: 8px;
@ -3067,7 +3067,7 @@ tr.dialogHeader4 .et2_label {
.et2_tabflag:hover,
.etemplate_tab > div:hover,
.etemplate_tab_active > div:hover {
background-color: #f0f0f0;
background-color: rgba(153, 204, 255, 0.4);
border: none;
border-bottom: 3px solid #696969;
border-top-left-radius: 5px;
@ -4224,7 +4224,7 @@ td.message span.message {
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header:hover {
/*.background_color_20_gray ;*/
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
/*font-size: 100%;*/
@ -4276,7 +4276,7 @@ td.message span.message {
/*aktive Objekte*/
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active:hover {
background-color: #bfbfbf;
background-color: #ffffff;
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active img.egw_fw_ui_tab_icon {
display: inline-block;
@ -4316,7 +4316,7 @@ td.message span.message {
position: absolute;
}
#egw_fw_main .egw_fw_ui_tab_header_hover {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main .egw_fw_ui_tab_content {
width: 100%;
@ -4756,7 +4756,7 @@ td.message span.message {
}
.egw_fw_ui_sidemenu_listitem:hover {
color: #000000;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.egw_fw_ui_sidemenu_listitem img.egw_fw_ui_sidemenu_listitem_icon {
/*display: none;*/
@ -5598,15 +5598,14 @@ table.egwGridView_grid tbody {
/*multiple choise*/
}
table.egwGridView_grid tbody tr:hover {
background: rgba(103, 159, 210, 0.2);
background: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid tbody tr.th:hover {
background: transparent;
}
table.egwGridView_grid tbody tr.selected {
background-image: none;
/*background-color: @egw_color_1_e !important;*/
background-color: rgba(255, 194, 0, 0.5);
background-color: rgba(102, 153, 204, 0.7);
}
table.egwGridView_grid tbody td {
border-bottom: 1px solid #E6E6E6;
@ -5664,19 +5663,19 @@ table.egwGridView_grid > tr > td span.high {
}
table.egwGridView_grid > tr > td span.urgent {
color: red;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid > tr > td span.low {
color: #373737;
}
table.egwGridView_grid tr.subentry {
background: rgba(255, 221, 115, 0.2);
background: rgba(102, 153, 204, 0.2);
}
table.egwGridView_grid tr.subentry:hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid tr.drop-hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid span.arrow {
-moz-user-select: none;

View File

@ -17,6 +17,9 @@
// Basic colour
// CI EGW
@egw_color_select: #6699CC;
@egw_color_hover: #99CCFF;
// Orange
@egw_color_1 : rgb(255, 194, 0); // #ffc200
@ -149,10 +152,10 @@
@color_active_row : fade(@egw_color_1_a, 1%);
// not in use
@color_selected_row : @egw_color_1_e;
@color_selected_row : fade(@egw_color_select,70%);
// Mouse over
@color_hover_row : fade(@egw_color_2_e, 20%);
@color_hover_row : fade(@egw_color_hover, 40%);
/* Dialog Button panel Background Color*/

View File

@ -17,10 +17,10 @@
// calender
#uical_select_resource {background-color: @egw_color_1_e;}
.uiaccountselection .primary_group {background-color: @egw_color_1_e;}
#uical_select_resource {background-color: @color_hover_row;}
.uiaccountselection .primary_group {background-color: @color_hover_row;}
option:checked {background-color: @egw_color_1_e;}
option:checked {background-color: @color_hover_row;}
.ui-tooltip {
padding: 8px;

View File

@ -252,7 +252,7 @@ tr.dialogHeader4{
border-bottom:3px solid @gray_10;
margin-bottom:-3px;
&:hover {
.background_color_10_gray;
background-color: @color_hover_row;
border:none;
border-bottom: 3px solid @gray_60;
border-top-left-radius: 5px;

View File

@ -126,7 +126,7 @@
&:hover {
/*.background_color_20_gray ;*/
background-color: @egw_color_1_e;
background-color: @color_hover_row;
}
// APP Name
@ -170,7 +170,7 @@
.background_color_0_gray ;
background-image:none !important;
padding-bottom:8px;
&:hover {.background_color_25_gray ;}
&:hover {.background_color_0_gray ;}
// aktive Bilder
@ -213,7 +213,7 @@
// Hover
// no effect ?
.egw_fw_ui_tab_header_hover{
background-color: @egw_color_1_e;
background-color: @color_hover_row;
}
// Der eigentliche Inhalt der APP

View File

@ -549,7 +549,7 @@
// Submenu Hover Item - gelb
&:hover{
.color_100_gray;
background-color: @egw_color_1_e;
background-color: @color_hover_row;
}

View File

@ -201,8 +201,7 @@ table.egwGridView_grid{
tr.th:hover {background: transparent;}
tr.selected{
background-image: none;
/*background-color: @egw_color_1_e !important;*/
background-color: fade(@color_active_row, 50%);
background-color: @color_selected_row;
}
// is active
@ -289,7 +288,7 @@ table.egwGridView_grid{
span.high {color: red;}
span.urgent {color: red; background-color: @egw_color_1_e;}
span.urgent {color: red; background-color: @color_hover_row;}
span.low {color: @gray_80;}

View File

@ -381,7 +381,7 @@
cursor: pointer;
}
.et2_link_list tr:hover {
background-color: rgba(103, 159, 210, 0.2);
background-color: rgba(153, 204, 255, 0.4);
}
.et2_link_list tr:active {
background-color: rgba(255, 194, 0, 0.01);
@ -1076,13 +1076,13 @@
* @version $Id$
*/
#uical_select_resource {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.uiaccountselection .primary_group {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
option:checked {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.ui-tooltip {
padding: 8px;
@ -3078,7 +3078,7 @@ tr.dialogHeader4 .et2_label {
.et2_tabflag:hover,
.etemplate_tab > div:hover,
.etemplate_tab_active > div:hover {
background-color: #f0f0f0;
background-color: rgba(153, 204, 255, 0.4);
border: none;
border-bottom: 3px solid #696969;
border-top-left-radius: 5px;
@ -4235,7 +4235,7 @@ td.message span.message {
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header:hover {
/*.background_color_20_gray ;*/
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header h1 {
/*font-size: 100%;*/
@ -4287,7 +4287,7 @@ td.message span.message {
/*aktive Objekte*/
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active:hover {
background-color: #bfbfbf;
background-color: #ffffff;
}
#egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header_active img.egw_fw_ui_tab_icon {
display: inline-block;
@ -4327,7 +4327,7 @@ td.message span.message {
position: absolute;
}
#egw_fw_main .egw_fw_ui_tab_header_hover {
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
#egw_fw_main .egw_fw_ui_tab_content {
width: 100%;
@ -4767,7 +4767,7 @@ td.message span.message {
}
.egw_fw_ui_sidemenu_listitem:hover {
color: #000000;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
.egw_fw_ui_sidemenu_listitem img.egw_fw_ui_sidemenu_listitem_icon {
/*display: none;*/
@ -5609,15 +5609,14 @@ table.egwGridView_grid tbody {
/*multiple choise*/
}
table.egwGridView_grid tbody tr:hover {
background: rgba(103, 159, 210, 0.2);
background: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid tbody tr.th:hover {
background: transparent;
}
table.egwGridView_grid tbody tr.selected {
background-image: none;
/*background-color: @egw_color_1_e !important;*/
background-color: rgba(255, 194, 0, 0.5);
background-color: rgba(102, 153, 204, 0.7);
}
table.egwGridView_grid tbody td {
border-bottom: 1px solid #E6E6E6;
@ -5675,19 +5674,19 @@ table.egwGridView_grid > tr > td span.high {
}
table.egwGridView_grid > tr > td span.urgent {
color: red;
background-color: #FFDD73;
background-color: rgba(153, 204, 255, 0.4);
}
table.egwGridView_grid > tr > td span.low {
color: #373737;
}
table.egwGridView_grid tr.subentry {
background: rgba(255, 221, 115, 0.2);
background: rgba(102, 153, 204, 0.2);
}
table.egwGridView_grid tr.subentry:hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid tr.drop-hover {
background: #FFDD73 !important;
background: rgba(102, 153, 204, 0.7) !important;
}
table.egwGridView_grid span.arrow {
-moz-user-select: none;

View File

@ -100,6 +100,9 @@ textarea.prefValue {
.prefValueColumn select.prefValue {
white-space: pre-line;
}
#preferences_settings_country_chzn {
width: 49% !important;
}
.prefHelp {
width: 100%;
height: 60px;