related to #1265 Adapted selection mode css to new icons

This commit is contained in:
Matthieu Leproux
2021-05-19 14:53:26 +02:00
parent a112b89d79
commit 71a82bd286
3 changed files with 70 additions and 35 deletions
@@ -1136,12 +1136,6 @@ update_selection_content();
background-color: #F3F3F3;
}
.user-container.container-selected .user-container-checkbox.user-list-checkbox .select-checkbox {
background-color: #ffa646;
border: solid #ffa646 2px;
}
.user-container-checkbox.user-list-checkbox i {
margin-left:7px;
}
@@ -1230,30 +1224,6 @@ update_selection_content();
white-space:nowrap;
}
/* User container selected */
.user-container.container-selected {
display:flex;
width:100%;
height:80px;
background-color:#FFD9A7;
font-weight:bold;
border-radius:10px;
margin-bottom:20px;
}
.user-container.container-selected .user-container-initials-wrapper > span {
background-color: #FF7B00;
color:#FEE7BD;
}
.user-container.container-selected .user-groups,
.user-container.container-selected .registration-clock {
background-color: #FEE7C8;
color:#FF7B00;
}
/* User Edit Pop-in */
#UserList {
font-size:1em;
@@ -2015,11 +1985,6 @@ Advanced filter
width: 10px;
}
.group-bonus {
color: #000;
background: #DDDDDD;
}
/*View Selector*/
.selectedAlbum-first {
+33
View File
@@ -4951,6 +4951,39 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important;
.user-first-col:hover .select-checkbox {
color: #000;
}
/* Selected container in userManager*/
.user-container.container-selected .user-container-checkbox.user-list-checkbox .select-checkbox {
background-color: #ffa646;
border: solid #ffa646 2px;
}
.user-container.container-selected {
display:flex;
width:100%;
height:80px;
background-color:#FFD9A7;
font-weight:bold;
border-radius:10px;
margin-bottom:20px;
}
.user-container.container-selected .user-container-initials-wrapper > span {
background-color: #FF7B00;
color:#FEE7BD;
}
.user-container.container-selected .user-groups,
.user-container.container-selected .registration-clock {
background-color: #FEE7C8;
color:#FF7B00;
}
/*****/
.group-bonus {
color: #000;
background: #DDDDDD;
}
#advanced_filter_button, #advanced-filter-container {
background-color:#F3F3F3;
+37
View File
@@ -1166,6 +1166,43 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important;
background-color: transparent !important;
}
/* Selected container in userManager*/
.user-container.container-selected .user-container-checkbox.user-list-checkbox .select-checkbox {
background-color: #ffa646;
border: solid #ff7b00 2px !important;
}
.user-container.container-selected {
display:flex;
width:100%;
height:80px;
background-color:#ffa646;
font-weight:bold;
border-radius:10px;
margin-bottom:20px;
}
.user-container.container-selected .user-container-initials-wrapper > span {
background-color: #FF7B00;
color:#FEE7BD;
border: solid #ff7b00 2px;
}
.user-container.container-selected .user-groups,
.user-container.container-selected .registration-clock {
background-color: #FEE7C8;
color:#FF7B00;
border: solid #ff7b00 2px;
}
/*****/
.group-bonus {
color: #DDDDDD;
background: transparent;
}
#advanced_filter_button, #advanced-filter-container {
background-color:#333;
}