Skip to content

Commit

Permalink
Added support for status page (fixes #27)
Browse files Browse the repository at this point in the history
  • Loading branch information
laCour committed Dec 16, 2015
1 parent bd5ae5e commit a624441
Show file tree
Hide file tree
Showing 2 changed files with 170 additions and 0 deletions.
1 change: 1 addition & 0 deletions scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,6 @@
@import "pages/apps";
@import "pages/spaces";
@import "pages/website";
@import "pages/status";

}
169 changes: 169 additions & 0 deletions scss/pages/_apps.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
#page {
.media_list {
background-color: $color-shade-dark;
border: 1px solid $color-shade-light;

> li {
+ li:before {
border-top: 1px solid $color-shade-light;
}

&.interactive {
a {
color: $base-font-color;

&:focus,
&:hover {
background: $color-shade-light;
border-color: $color-shade-lightest;
}
}
}
}

&.media_list_with_arrows a {
&:before {
color: $color-highlight;
}
}
}

.titled_list {
h4 {
color: $base-font-color;
}

ul {
li {
a {
color: $base-font-color;

&:focus,
&:hover {
background-color: $color-shade-darkest;
}
}

&.active a {
background: $color-shade-dark !important;
color: $base-link-color;

&:hover {
background: $color-shade-dark !important;
color: $base-link-color-active;
}
}
}
}
}

ul {
&.breadcrumbs {
li {
color: $color-highlight;

&:not(:first-child) {
&:before {
color: $color-highlight;
}
}
}
}

&.small_arrow_list {
li {
a {
color: $base-font-color;

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

&:after {
color: $base-font-color;
}
}

+ li a {
border-top: 1px solid transparent;
}
}
}
}

.tag {
background-color: $color-shade-darkest;
border: 1px solid $color-shade-dark;

&:hover {
background-color: $color-shade-light !important;
}
}
}

.large_app_icon {
border: 1px solid $color-shade-dark;
}

nav.top.apps_nav {
background: transparent;

&.persistent .nav_title {
border-color: $color-shade-light;
}

&.clear_nav {
.nav_title a {
color: $base-font-color;
}
}

.nav_title a {
color: $base-font-color;
}

ul a.active {
color: $base-link-color-active;
}
}

.apps_typeahead {
border: 1px solid $color-shade-dark;
box-shadow: 0 4px 8px $color-shadow-medium;

.no_results,
.suggestion {
background-color: $color-base;
color: $base-font-color;

&.active {
border-top-color: $color-shade-dark;
}

+ .no_results,
+ .suggestion {
border-top: 1px solid $color-shade-dark;
}
}

.suggestion {
&:hover {
background: $color-shade-darkest;
}

&.active {
background: $color-shade-light !important;
color: $base-font-color;
}
}
}

.search_input_container {
.search_input {
&:focus {
~ .icon_search_input {
color: $base-font-color;
}
}
}
}

0 comments on commit a624441

Please sign in to comment.