Skip to content

Commit

Permalink
Added styles for newer admin team management list
Browse files Browse the repository at this point in the history
  • Loading branch information
laCour committed Nov 8, 2015
1 parent 806f218 commit 3adde1a
Showing 1 changed file with 78 additions and 11 deletions.
89 changes: 78 additions & 11 deletions scss/pages/_website.scss
Original file line number Diff line number Diff line change
Expand Up @@ -273,24 +273,44 @@ html.no_touch {
border-bottom: 1px solid $color-base;
color: $base-font-color;

&:hover {
background-color: $color-shade-dark;
}

.pill.group {
background: $color-shade-mid;
}

.admin_member_type,
.admin_member_caret {
color: $color-highlight;
}

.admin_member_real_name,
&.expanded .sub_action {
.admin_member_real_name {
color: $base-font-color;
}

&.expanded .btn-outline {
border: 1px solid $color-base;
color: $base-font-color !important;
.two_factor_auth_badge:hover {
background: $color-shade-mid;
}

&:hover {
background: $color-base;
border: 1px solid $color-shade-dark;
&.expanded {
.btn_outline {
border: 1px solid $color-base;
color: $base-font-color !important;

&:hover {
border: 1px solid $color-shade-dark;
color: $base-font-color !important;
}
}

.sub_action {
color: $base-link-color;

&:hover {
color: $base-link-color-active;
}
}
}

Expand All @@ -302,7 +322,7 @@ html.no_touch {
}

&.inactive {
background: $color-shade-darkest;
background: $color-shade-mid;
}

.inline_name:hover,
Expand All @@ -312,6 +332,50 @@ html.no_touch {
color: $base-link-color-active;
text-decoration: underline;
}

&.invite_item.bouncing {
background: $color-shade-lightest;

.email {
color: $color-red;
}
}
}

.notice_error,
.notice_processing {
color: $base-font-color;
text-shadow: 0 1px 1px $color-shadow-medium;
}

.notice_success {
color: $base-font-color;
text-shadow: 0 1px 1px $color-shadow-medium;

a.undo_link {
color: $base-link-color;

&:hover {
color: $base-link-color-active;
}
}
}

.restriction_option {
background: $color-shade-mid;
color: $base-font-color;

&:hover {
background: $color-shade-darkest;

.ts_icon_arrow_right {
color: $base-link-color-active;
}
}

.ts_icon_arrow_right {
color: $base-link-color;
}
}

#page pre,
Expand Down Expand Up @@ -528,7 +592,6 @@ html.no_touch .plastic_row:hover .chevron {
color: $base-link-color;
}

.admin_list_item.expanded .sub_action:hover,
.nav_open #menu_toggle,
#second_row .disclaimer,
#stats_disclaimer,
Expand Down Expand Up @@ -721,7 +784,6 @@ ul.sidebar_nav li {
color: $base-link-color-active;
}

.admin_list_item:hover,
.plan_availability,
.menu #monkey_scroll_wrapper_for_menu_items_scroller,
.modal-backdrop,
Expand Down Expand Up @@ -800,3 +862,8 @@ a.two_factor_choice {
color: $base-font-color;
}
}

@keyframes highlight_fade {
from { background-color: $color-shade-mid; }
to { background-color: $color-shade-dark; }
}

0 comments on commit 3adde1a

Please sign in to comment.