Remove some !important that isn't, and add deprecated note to old CSS
This commit is contained in:
parent
8ce09e84c6
commit
b05b4437e5
@ -1,3 +1,7 @@
|
|||||||
|
/* This file is deprecated. We'll keep it here as reference until somebody
|
||||||
|
defines a dark colour scheme */
|
||||||
|
|
||||||
|
|
||||||
body { font-family: sans-serif;
|
body { font-family: sans-serif;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
background-color: #101010;
|
background-color: #101010;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/* There's probably some stuff in here we don't need, and maybe some missing stuff we do need. We can clean it up incrementaly, just get the heavy lifting done for now */
|
/*This file is deprecated. We'll keep it for reference until we provide window decorations */
|
||||||
|
|
||||||
|
|
||||||
aside {
|
aside {
|
||||||
border-radius: $radiuspx;}
|
border-radius: $radiuspx;}
|
||||||
|
@ -117,17 +117,17 @@ blockquote {
|
|||||||
filter:alpha(opacity=100);
|
filter:alpha(opacity=100);
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {background-image: linear-gradient(bottom, #$nav_bg_1 26%, #$nav_bg_2 82%) !important;
|
nav {background-image: linear-gradient(bottom, #$nav_bg_1 26%, #$nav_bg_2 82%);
|
||||||
background-image: -o-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%) !important;
|
background-image: -o-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%);
|
||||||
background-image: -moz-linear-gradient(bottom,$nav_bg_1 26%, $nav_bg_2 82%) !important;
|
background-image: -moz-linear-gradient(bottom,$nav_bg_1 26%, $nav_bg_2 82%);
|
||||||
background-image: -webkit-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%) !important;
|
background-image: -webkit-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%);
|
||||||
background-image: -ms-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%) !important;
|
background-image: -ms-linear-gradient(bottom, $nav_bg_1 26%, $nav_bg_2 82%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
nav:hover {background-image: linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
nav:hover {background-image: linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
||||||
background-image: -o-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
background-image: -o-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
||||||
background-image: -moz-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%) !important;
|
background-image: -moz-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
||||||
background-image: -webkit-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
background-image: -webkit-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
||||||
background-image: -ms-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
background-image: -ms-linear-gradient(bottom, $nav_bg_3 26%, $nav_bg_4 82%);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user