summaryrefslogtreecommitdiff
path: root/web-ui/app/scss/_others.scss
diff options
context:
space:
mode:
authorFelix Hammerl <fhammerl@thoughtworks.com>2016-03-31 14:47:13 +0200
committerFelix Hammerl <fhammerl@thoughtworks.com>2016-04-13 17:18:30 +0200
commitbf521f95e9149d8a0bd840f1c43b7a093dbaa31b (patch)
tree59e76dc8cc65c7b15535376cf3ef1a9a5fd71417 /web-ui/app/scss/_others.scss
parent6272657d254c064be2c6b552b42caf2357c801c3 (diff)
Issue #670: Split up _styles.scss
Diffstat (limited to 'web-ui/app/scss/_others.scss')
-rw-r--r--web-ui/app/scss/_others.scss63
1 files changed, 62 insertions, 1 deletions
diff --git a/web-ui/app/scss/_others.scss b/web-ui/app/scss/_others.scss
index 317a1066..a5796ebe 100644
--- a/web-ui/app/scss/_others.scss
+++ b/web-ui/app/scss/_others.scss
@@ -1,5 +1,5 @@
.hidden {
- display: none;
+ display: none;
}
.no-padding {
@@ -9,3 +9,64 @@
.text-right {
text-align: right;
}
+
+.search-highlight {
+ background-color: $search-highlight;
+}
+
+button {
+ border: 1px solid transparent;
+
+ i {
+ margin-left: 5px;
+ }
+
+ &#trash-button {
+ background: $white;
+ border: 1px solid $medium_light_grey;
+ color: $medium_light_grey;
+ float: right;
+ margin-left: 5px;
+
+ &:hover, &:focus {
+ background: $contrast;
+ }
+ }
+
+ &.no-style {
+ background: transparent;
+ color: $medium_light_grey;
+ padding: 0;
+ margin: 0;
+
+ i {
+ margin: 0;
+ padding: 0;
+ vertical-align: middle;
+ }
+ }
+}
+
+section {
+ display: inline-block;
+ vertical-align: top;
+ height: 100vh;
+ overflow-y: scroll;
+
+ &#left-pane {
+ background-color: $navigation_background;
+ color: white;
+ }
+
+ &#middle-pane {
+ background: $contrast;
+ }
+
+ &#right-pane {
+ padding: 0 10px 60px 0px;
+ background: $white;
+ box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.12);
+ z-index: 2;
+ overflow-y: auto;
+ }
+}