mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-12 11:43:01 +02:00
Fixes #1400 ViewSelector in DarkMode done
ViewSelector for Plugin Manager, User Manager and Album manager.
This commit is contained in:
@@ -97,7 +97,6 @@ jQuery(document).ready(function(){
|
||||
padding: 7px 0px;
|
||||
margin-right: 0px;
|
||||
border-radius: 10px;
|
||||
background: #fafafa !important;
|
||||
}
|
||||
|
||||
.AlbumViewSelector span {
|
||||
@@ -126,15 +125,6 @@ jQuery(document).ready(function(){
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.AlbumViewSelector input:checked + label{
|
||||
background: transparent;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.AlbumViewSelector input:checked + label span{
|
||||
background: orange;
|
||||
}
|
||||
|
||||
.switchLayout {
|
||||
display: none;
|
||||
}
|
||||
@@ -143,7 +133,6 @@ jQuery(document).ready(function(){
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
.categoryContainer {
|
||||
padding: 0 20px 0 20px;
|
||||
}
|
||||
|
||||
@@ -405,7 +405,6 @@ jQuery(".pluginMiniBox").each(function(index){
|
||||
padding: 0px;
|
||||
margin-right: 0px;
|
||||
border-radius: 7px;
|
||||
{* background: #fafafa !important; *}
|
||||
}
|
||||
|
||||
.AlbumViewSelector span {
|
||||
@@ -430,15 +429,6 @@ jQuery(".pluginMiniBox").each(function(index){
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.AlbumViewSelector input:checked + label{
|
||||
background: transparent;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.AlbumViewSelector input:checked + label span{
|
||||
background: orange;
|
||||
}
|
||||
|
||||
.switchLayout {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -2077,7 +2077,6 @@ Advanced filter
|
||||
padding: 6px 0px;
|
||||
margin-right: 0px;
|
||||
border-radius: 10px;
|
||||
background: #fafafa !important;
|
||||
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
@@ -2106,15 +2105,6 @@ Advanced filter
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.UserViewSelector input:checked + label{
|
||||
background: transparent;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.UserViewSelector input:checked + label span{
|
||||
background: orange;
|
||||
}
|
||||
|
||||
.switchLayout {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -4903,4 +4903,22 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.doubleSelect p {display:flex; justify-content: center;}
|
||||
.doubleSelect p {display:flex; justify-content: center;}
|
||||
|
||||
/* View selectors css (colors)*/
|
||||
|
||||
.AlbumViewSelector, .UserViewSelector {
|
||||
background: #fafafa !important;
|
||||
}
|
||||
|
||||
.AlbumViewSelector input:checked + label,
|
||||
.UserViewSelector input:checked + label{
|
||||
background: transparent;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.AlbumViewSelector input:checked + label span,
|
||||
.UserViewSelector input:checked + label span{
|
||||
background: orange;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user