merging more styles into base, also fixing <big> abuse
This commit is contained in:
parent
e5a8c606d4
commit
9c02ad73ac
|
@ -8,6 +8,10 @@
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
big {
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
background-color: scale-color-diff();
|
background-color: scale-color-diff();
|
||||||
border-left: 5px solid darken(scale-color-diff(), 10%);
|
border-left: 5px solid darken(scale-color-diff(), 10%);
|
||||||
|
|
|
@ -0,0 +1,239 @@
|
||||||
|
.d-header {
|
||||||
|
min-width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
z-index: 1001;
|
||||||
|
background-color: $header_background;
|
||||||
|
box-shadow: 0 2px 4px -2px rgba($header_primary, .25);
|
||||||
|
|
||||||
|
.docked & {
|
||||||
|
position: fixed;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.contents {
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
display: table;
|
||||||
|
float: left;
|
||||||
|
height: 40px;
|
||||||
|
> a {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#site-logo {
|
||||||
|
max-height: 40px;
|
||||||
|
max-width: 122px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa-home {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel {
|
||||||
|
float: right;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.current-username {
|
||||||
|
float: left;
|
||||||
|
a {
|
||||||
|
color: $header_primary;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
button.login-button {
|
||||||
|
float: left;
|
||||||
|
margin-top: 7px;
|
||||||
|
padding: 6px 10px;
|
||||||
|
.fa { margin-right: 3px; }
|
||||||
|
}
|
||||||
|
.icons {
|
||||||
|
float: left;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0 0 0 5px;
|
||||||
|
list-style: none;
|
||||||
|
> li {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.icon {
|
||||||
|
display: block;
|
||||||
|
padding: 3px;
|
||||||
|
color: scale-color($header_primary, $lightness: 50%);
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
border-top: 1px solid transparent;
|
||||||
|
border-left: 1px solid transparent;
|
||||||
|
border-right: 1px solid transparent;
|
||||||
|
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $primary;
|
||||||
|
background-color: scale-color-diff();
|
||||||
|
border-top: 1px solid transparent;
|
||||||
|
border-left: 1px solid transparent;
|
||||||
|
border-right: 1px solid transparent;
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
color: $primary;
|
||||||
|
background-color: scale-color-diff();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.active .icon {
|
||||||
|
position: relative;
|
||||||
|
color: #7b7b7b;
|
||||||
|
background-color: $secondary;
|
||||||
|
cursor: default;
|
||||||
|
border-top: 1px solid scale-color-diff();
|
||||||
|
border-left: 1px solid scale-color-diff();
|
||||||
|
border-right: 1px solid scale-color-diff();
|
||||||
|
&:after {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1101;
|
||||||
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
content: "";
|
||||||
|
border-top: 1px solid $secondary;
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[class^="fa fa-"] {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 32px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.notifications {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.badge-notification {
|
||||||
|
position: absolute;
|
||||||
|
top: -9px;
|
||||||
|
z-index: 1;
|
||||||
|
margin-left: 0;
|
||||||
|
}
|
||||||
|
.unread-notifications {
|
||||||
|
right: -4px;
|
||||||
|
background-color: scale-color($tertiary, $lightness: 50%);
|
||||||
|
}
|
||||||
|
.unread-private-messages {
|
||||||
|
left: -4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.flagged-posts {
|
||||||
|
background-color: $danger;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.d-dropdown {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
background: $secondary;
|
||||||
|
max-height: 417px;
|
||||||
|
top: 100%;
|
||||||
|
right: 0;
|
||||||
|
z-index: 1100;
|
||||||
|
overflow: auto;
|
||||||
|
border: 1px solid scale-color-diff();
|
||||||
|
@include box-shadow(0 2px 2px rgba($primary, .4));
|
||||||
|
|
||||||
|
ul {
|
||||||
|
margin: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
padding: 5px;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 16px;
|
||||||
|
.fa {
|
||||||
|
margin-right: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.selected {
|
||||||
|
background-color: scale-color($tertiary, $lightness: 90%);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Notifications
|
||||||
|
|
||||||
|
&#notifications-dropdown {
|
||||||
|
.fa {
|
||||||
|
color: scale-color($primary, $lightness: 50%);
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
background-color: scale-color($tertiary, $lightness: 90%);
|
||||||
|
}
|
||||||
|
.read {
|
||||||
|
background-color: $secondary;
|
||||||
|
}
|
||||||
|
.none {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
.loading {
|
||||||
|
padding: 10px;
|
||||||
|
display: block;
|
||||||
|
color: scale-color($primary, $lightness: 50%);
|
||||||
|
font-size: 24px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Search
|
||||||
|
|
||||||
|
input[type='text'] {
|
||||||
|
width: 298px;
|
||||||
|
height: 22px;
|
||||||
|
margin: 5px;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
.searching {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
top: 13px;
|
||||||
|
right: 13px;
|
||||||
|
color: scale-color($primary, $lightness: 50%);
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
.no-results {
|
||||||
|
padding: 0 5px 5px;
|
||||||
|
}
|
||||||
|
.filter {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Categories
|
||||||
|
|
||||||
|
.category {
|
||||||
|
float: left;
|
||||||
|
background-color: transparent;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&#user-dropdown {
|
||||||
|
width: 118px;
|
||||||
|
.user-dropdown-links {
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: 2px 8px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
.fa {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,138 +3,19 @@
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
.d-header {
|
.d-header {
|
||||||
min-width: 100%;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
box-shadow: 0 2px 4px -2px rgba($header_primary, .25);
|
|
||||||
background-color: $header_background;
|
|
||||||
padding-top: 3px;
|
padding-top: 3px;
|
||||||
.docked & {
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
.contents {
|
|
||||||
margin: 10px 0;
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
display: table;
|
|
||||||
float: left;
|
|
||||||
height: 40px;
|
|
||||||
> a {
|
|
||||||
display: table-cell;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#site-logo {
|
|
||||||
max-height: 40px;
|
|
||||||
}
|
|
||||||
.fa-home {
|
.fa-home {
|
||||||
font-size: 20px;
|
|
||||||
line-height: 40px;
|
|
||||||
padding-right: 3px;
|
padding-right: 3px;
|
||||||
padding-top: 3px;
|
padding-top: 3px;
|
||||||
}
|
}
|
||||||
.panel {
|
|
||||||
float: right;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.current-username {
|
.current-username {
|
||||||
float: left;
|
|
||||||
a {
|
a {
|
||||||
color: $header_primary;
|
|
||||||
font-size: 14px;
|
|
||||||
display:block;
|
display:block;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
button.login-button {
|
|
||||||
float: left;
|
|
||||||
margin-top: 7px;
|
|
||||||
padding: 6px 10px;
|
|
||||||
.fa { margin-right: 3px; }
|
|
||||||
}
|
|
||||||
.icons {
|
|
||||||
float: left;
|
|
||||||
text-align: center;
|
|
||||||
margin: 0 0 0 5px;
|
|
||||||
list-style: none;
|
|
||||||
> li {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.icon {
|
|
||||||
display: block;
|
|
||||||
padding: 3px;
|
|
||||||
color: scale-color($header_primary, $lightness: 50%);
|
|
||||||
text-decoration: none;
|
|
||||||
cursor: pointer;
|
|
||||||
border-top: 1px solid transparent;
|
|
||||||
border-left: 1px solid transparent;
|
|
||||||
border-right: 1px solid transparent;
|
|
||||||
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: $primary;
|
|
||||||
background-color: scale-color-diff();
|
|
||||||
border-top: 1px solid transparent;
|
|
||||||
border-left: 1px solid transparent;
|
|
||||||
border-right: 1px solid transparent;
|
|
||||||
}
|
|
||||||
&:active {
|
|
||||||
color: $primary;
|
|
||||||
background-color: scale-color-diff();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.active .icon {
|
|
||||||
position: relative;
|
|
||||||
color: #7b7b7b;
|
|
||||||
background-color: $secondary;
|
|
||||||
cursor: default;
|
|
||||||
border-top: 1px solid scale-color-diff();
|
|
||||||
border-left: 1px solid scale-color-diff();
|
|
||||||
border-right: 1px solid scale-color-diff();
|
|
||||||
&:after {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 100%;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1101;
|
|
||||||
width: 100%;
|
|
||||||
height: 0;
|
|
||||||
content: "";
|
|
||||||
border-top: 1px solid $secondary;
|
|
||||||
}
|
|
||||||
&:hover {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
[class^="fa fa-"] {
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
font-size: 20px;
|
|
||||||
line-height: 32px;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.notifications {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.badge-notification {
|
|
||||||
position: absolute;
|
|
||||||
top: -9px;
|
|
||||||
z-index: 1;
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
.unread-notifications {
|
|
||||||
right: -4px;
|
|
||||||
background-color: scale-color($tertiary, $lightness: 50%);
|
|
||||||
}
|
|
||||||
.unread-private-messages {
|
|
||||||
left: -4px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.flagged-posts {
|
|
||||||
background-color: $danger;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* needs to be global, used in user-drop down and user page too */
|
/* needs to be global, used in user-drop down and user page too */
|
||||||
|
@ -142,7 +23,6 @@
|
||||||
background-color: $success;
|
background-color: $success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -155,102 +35,20 @@
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
.d-dropdown {
|
.d-dropdown {
|
||||||
display: none;
|
|
||||||
position: absolute;
|
|
||||||
width: 320px;
|
width: 320px;
|
||||||
max-height: 417px;
|
|
||||||
top: 100%;
|
|
||||||
right: 0;
|
|
||||||
z-index: 1100;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
border: 1px solid scale-color-diff();
|
|
||||||
background-color: $secondary;
|
|
||||||
@include box-shadow(0 2px 2px rgba($primary, .4));
|
|
||||||
|
|
||||||
// Common
|
// Common
|
||||||
|
|
||||||
ul {
|
|
||||||
margin: 0;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
padding: 5px;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 16px;
|
|
||||||
.fa {
|
|
||||||
margin-right: 3px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.heading {
|
.heading {
|
||||||
border-top: 1px solid scale-color-diff();
|
border-top: 1px solid scale-color-diff();
|
||||||
}
|
}
|
||||||
.selected {
|
|
||||||
background-color: scale-color($tertiary, $lightness: 90%);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Notifications
|
|
||||||
|
|
||||||
&#notifications-dropdown {
|
|
||||||
.fa {
|
|
||||||
color: scale-color($primary, $lightness: 50%);
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
background-color: scale-color($tertiary, $lightness: 90%);
|
|
||||||
}
|
|
||||||
.read {
|
|
||||||
background-color: $secondary;
|
|
||||||
}
|
|
||||||
.none {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.loading {
|
|
||||||
padding: 10px;
|
|
||||||
display: block;
|
|
||||||
color: scale-color($primary, $lightness: 50%);
|
|
||||||
font-size: 24px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Search
|
|
||||||
|
|
||||||
input[type='text'] {
|
|
||||||
width: 298px;
|
|
||||||
height: 22px;
|
|
||||||
margin: 5px;
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.searching {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 13px;
|
|
||||||
right: 13px;
|
|
||||||
color: scale-color($primary, $lightness: 50%);
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
.no-results {
|
|
||||||
padding: 0 5px 5px;
|
|
||||||
}
|
|
||||||
.filter {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Categories
|
// Categories
|
||||||
|
|
||||||
.category {
|
.category {
|
||||||
float: left;
|
|
||||||
background-color: transparent;
|
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&#user-dropdown {
|
|
||||||
width: 118px;
|
|
||||||
.user-dropdown-links {
|
|
||||||
text-align: right;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
padding: 2px 8px;
|
padding: 2px 8px;
|
||||||
margin-bottom: 2px;
|
margin-bottom: 2px;
|
||||||
|
|
|
@ -234,6 +234,12 @@
|
||||||
th.posts {
|
th.posts {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
tbody tr:nth-child(odd) {
|
||||||
|
background-color: darken($secondary, 3%);
|
||||||
|
}
|
||||||
|
tbody tr:nth-child(even) {
|
||||||
|
background-color: $secondary;
|
||||||
|
}
|
||||||
th .toggle-admin {
|
th .toggle-admin {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
padding: 3px 8px;
|
padding: 3px 8px;
|
||||||
|
|
|
@ -5,243 +5,58 @@
|
||||||
.d-header {
|
.d-header {
|
||||||
padding-left: 10px !important;
|
padding-left: 10px !important;
|
||||||
padding-right: 10px !important;
|
padding-right: 10px !important;
|
||||||
min-width: 100%;
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
z-index: 1001;
|
|
||||||
background-color: $header_background;
|
|
||||||
box-shadow: 0 0 3px rgba($header_primary, .6);
|
|
||||||
|
|
||||||
.docked & {
|
|
||||||
position: fixed;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
a.star {float: left;}
|
a.star {float: left;}
|
||||||
.contents {
|
|
||||||
margin: 10px 0;
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
display: table;
|
|
||||||
float: left;
|
|
||||||
height: 40px;
|
|
||||||
> a {
|
|
||||||
display: table-cell;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#site-logo {
|
|
||||||
max-height: 40px;
|
|
||||||
max-width: 122px;
|
|
||||||
}
|
|
||||||
.fa-home {
|
|
||||||
font-size: 20px;
|
|
||||||
line-height: 40px;
|
|
||||||
}
|
|
||||||
.panel {
|
.panel {
|
||||||
float: right;
|
|
||||||
position: relative;
|
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
.current-username {
|
.current-username {
|
||||||
float: left;
|
|
||||||
display: none;
|
display: none;
|
||||||
a {
|
a {
|
||||||
color: darken($header_primary, 40%);
|
|
||||||
font-size: 14px;
|
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
button.login-button {
|
|
||||||
float: left;
|
|
||||||
margin-top: 7px;
|
|
||||||
padding: 6px 10px;
|
|
||||||
.fa { margin-right: 3px; }
|
|
||||||
}
|
|
||||||
.icons {
|
.icons {
|
||||||
float: left;
|
|
||||||
text-align: center;
|
|
||||||
margin: 0 0 0 5px;
|
|
||||||
list-style: none;
|
|
||||||
> li {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.icon {
|
|
||||||
display: block;
|
|
||||||
padding: 4px;
|
|
||||||
color: scale-color($header_primary, $lightness: 50%);
|
|
||||||
text-decoration: none;
|
|
||||||
cursor: pointer;
|
|
||||||
&:hover {
|
|
||||||
color: $primary;
|
|
||||||
background-color: scale-color($primary, $lightness: 75%);
|
|
||||||
}
|
|
||||||
&:active {
|
|
||||||
color: $primary;
|
|
||||||
background-color: scale-color($primary, $lightness: 75%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.active .icon {
|
|
||||||
position: relative;
|
|
||||||
color: scale-color($primary, $lightness: 75%);
|
|
||||||
background-color: $secondary;
|
|
||||||
border: 1px solid scale-color-diff();
|
|
||||||
cursor: default;
|
|
||||||
&:after {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 100%;
|
|
||||||
left: 0;
|
|
||||||
z-index: 1101;
|
|
||||||
width: 100%;
|
|
||||||
height: 0;
|
|
||||||
content: "";
|
|
||||||
border-top: 1px solid $secondary;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
[class^="fa fa-"] {
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
font-size: 20px;
|
|
||||||
line-height: 32px;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
.notifications {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.badge-notification {
|
.badge-notification {
|
||||||
position: absolute;
|
|
||||||
top: -9px;
|
|
||||||
z-index: 1;
|
|
||||||
margin-left: 0;
|
|
||||||
color: $tertiary !important;
|
color: $tertiary !important;
|
||||||
/* this !important is a terrible hack but the badge colors are
|
/* this !important is a terrible hack but the badge colors are
|
||||||
being overridden in a way I can't figure out on mobile, appears
|
being overridden in a way I can't figure out on mobile, appears
|
||||||
to be a CSS precedence problem */
|
to be a CSS precedence problem */
|
||||||
}
|
}
|
||||||
.unread-notifications {
|
|
||||||
right: -4px;
|
.active .icon {
|
||||||
background-color: scale-color($tertiary, $lightness: 40%);
|
&:after { margin-top: -1px; }
|
||||||
color: $tertiary;
|
|
||||||
}
|
|
||||||
.unread-private-messages {
|
|
||||||
left: -4px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.flagged-posts {
|
|
||||||
background-color: $danger;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* needs to be global, used in user-drop down and user page too */
|
|
||||||
.unread-private-messages {
|
|
||||||
background-color: $success;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#main {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-outlet {
|
#main-outlet {
|
||||||
padding-top: 60px;
|
padding-top: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Dropdowns
|
// Dropdowns
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
.d-dropdown {
|
.d-dropdown {
|
||||||
display: none;
|
|
||||||
width: 290px;
|
width: 290px;
|
||||||
position: absolute;
|
|
||||||
top: 100%;
|
|
||||||
right: 0;
|
|
||||||
z-index: 1100;
|
|
||||||
margin-top: -1px;
|
margin-top: -1px;
|
||||||
border: 1px solid scale-color-diff();;
|
|
||||||
background-color: $secondary;
|
|
||||||
@include box-shadow(0 1px 1px rgba($primary, 0.2));
|
|
||||||
|
|
||||||
// Common
|
// Common
|
||||||
|
|
||||||
ul {
|
|
||||||
margin: 0;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
padding: 5px;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 16px;
|
|
||||||
.fa {
|
|
||||||
margin-right: 3px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.heading {
|
.heading {
|
||||||
color: $primary;
|
color: $primary;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 15px;
|
line-height: 15px;
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
.selected {
|
|
||||||
background-color: scale-color($tertiary, $lightness: 75%);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Notifications
|
|
||||||
|
|
||||||
&#notifications-dropdown {
|
|
||||||
.fa {
|
|
||||||
color: #777;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
background-color: scale-color($tertiary, $lightness: 85%);
|
|
||||||
}
|
|
||||||
.read {
|
|
||||||
background-color: $secondary;
|
|
||||||
}
|
|
||||||
.none {
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.loading {
|
|
||||||
padding: 10px;
|
|
||||||
display: block;
|
|
||||||
color: #777;
|
|
||||||
font-size: 24px;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search
|
// Search
|
||||||
|
|
||||||
input[type='text'] {
|
input[type='text'] {
|
||||||
width: 267px;
|
width: 267px;
|
||||||
height: 22px;
|
|
||||||
margin: 5px;
|
|
||||||
padding: 5px;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
&:focus {
|
|
||||||
@include box-shadow((inset 0 1px 1px rgba($primary, 0.075), 0 0 4px rgba(82, 168, 236, 0.6)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.searching {
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
top: 13px;
|
|
||||||
right: 13px;
|
|
||||||
color: #777;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
.no-results {
|
|
||||||
padding: 0 5px 5px;
|
|
||||||
}
|
|
||||||
.filter {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Categories
|
|
||||||
|
|
||||||
.category {
|
|
||||||
float: left;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&#user-dropdown {
|
&#user-dropdown {
|
||||||
|
|
Loading…
Reference in New Issue