mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 23:38:56 +00:00
3926cc0220
* refactor: CSS variables to use fixit-var for consistency across styles * refactor: reorganize CSS structure and consolidate imports for improved maintainability * refactor: unify CSS variable usage and improve structure across stylesheets * refactor: standardize CSS variable usage for layout * refactor: standardize CSS variable usage for archive and special pages * refactor: standardize CSS variable usage for single page * refactor: standardize CSS variable usage for widgets * refactor(css): refactors the border-radius mixin and adds the .rounded-full utility class * refactor: standardize z-index usage across components * refactor(css): removes deprecated compatibility mixins and replaces them with native CSS properties * feat: unify color variable naming and update theme color values - Rename `global-font-secondary-color` to `global-placeholder-color` for more accurate description of its purpose - Update multiple style references to use the new `secondary` theme color variable - Update theme color mapping to the new color values for improved visual consistency - Fixed the use of search box placeholder colors and removed hard-coded transparency values - Added color preview test documentation for easier verification of color rendering - Cleaned up some duplicate dark mode styles and replaced them with unified CSS variables * refactor: remove the `hr-background-color` variable and uses `global-border-color` uniformly * feat(CSE): add dark theme style to Google CSE search box and results container * fix(task-lists): fixed styling and rendering issues with nested task lists
105 lines
2.0 KiB
SCSS
Vendored
105 lines
2.0 KiB
SCSS
Vendored
[data-theme=dark] .aplayer {
|
|
background: #212121;
|
|
|
|
&.aplayer-withlist {
|
|
.aplayer-info {
|
|
border-bottom-color: #5c5c5c;
|
|
}
|
|
}
|
|
|
|
&.aplayer-fixed {
|
|
.aplayer-list {
|
|
border-color: #5c5c5c;
|
|
}
|
|
}
|
|
|
|
.aplayer-body {
|
|
background-color: #212121;
|
|
}
|
|
|
|
.aplayer-info {
|
|
border-top-color: #212121;
|
|
}
|
|
|
|
.aplayer-info {
|
|
.aplayer-music {
|
|
.aplayer-title {
|
|
color: #fff;
|
|
}
|
|
|
|
.aplayer-author {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.aplayer-controller {
|
|
.aplayer-time {
|
|
color: #eee;
|
|
|
|
.aplayer-icon {
|
|
path {
|
|
fill: #eee;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.aplayer-list {
|
|
background-color: #212121;
|
|
|
|
li {
|
|
color: #fff;
|
|
border-top-color: #666;
|
|
|
|
&:hover {
|
|
background: #4e4e4e;
|
|
}
|
|
|
|
&.aplayer-list-light {
|
|
background: #6c6c6c;
|
|
}
|
|
|
|
.aplayer-list-index {
|
|
color: #ddd;
|
|
}
|
|
|
|
.aplayer-list-author {
|
|
color: #ddd;
|
|
}
|
|
}
|
|
}
|
|
|
|
.aplayer-lrc {
|
|
text-shadow: -1px -1px 0 #666;
|
|
|
|
&:before {
|
|
background: -moz-linear-gradient(top, rgba(33,33,33,1) 0%, rgba(33,33,33,0) 100%);
|
|
background: -webkit-linear-gradient(top, rgba(33,33,33,1) 0%,rgba(33,33,33,0) 100%);
|
|
background: linear-gradient(to bottom, rgba(33,33,33,1) 0%,rgba(33,33,33,0) 100%);
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121', endColorstr='#00212121',GradientType=0 );
|
|
}
|
|
|
|
&:after {
|
|
background: -moz-linear-gradient(top, rgba(33,33,33,0) 0%, rgba(33,33,33,0.8) 100%);
|
|
background: -webkit-linear-gradient(top, rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);
|
|
background: linear-gradient(to bottom, rgba(33,33,33,0) 0%,rgba(33,33,33,0.8) 100%);
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212121', endColorstr='#cc212121',GradientType=0 );
|
|
}
|
|
|
|
p {
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.aplayer-miniswitcher {
|
|
background: #484848;
|
|
|
|
.aplayer-icon {
|
|
path {
|
|
fill: #eee;
|
|
}
|
|
}
|
|
}
|
|
}
|