summaryrefslogtreecommitdiff
path: root/web-ui/public/scss/_others.scss
diff options
context:
space:
mode:
authorRoald de Vries <rdevries@thoughtworks.com>2016-12-07 15:26:10 +0100
committerRoald de Vries <rdevries@thoughtworks.com>2016-12-07 15:26:10 +0100
commitd10f607a4d40587510b0dc31b31fe4750bf4a3a3 (patch)
treedb016bb0878989249e0f329e2162d11067b0f8b7 /web-ui/public/scss/_others.scss
parentc28abba2f5b1186c671ebef508d40ffaae6d5bc5 (diff)
parenteaf2019b6e977d1191e0ee12f694a02bb9612f83 (diff)
[#801] Merge branch 'signup'
Diffstat (limited to 'web-ui/public/scss/_others.scss')
-rw-r--r--web-ui/public/scss/_others.scss72
1 files changed, 72 insertions, 0 deletions
diff --git a/web-ui/public/scss/_others.scss b/web-ui/public/scss/_others.scss
new file mode 100644
index 00000000..039d94bd
--- /dev/null
+++ b/web-ui/public/scss/_others.scss
@@ -0,0 +1,72 @@
+.hidden {
+ display: none;
+}
+
+.no-padding {
+ padding: 0;
+}
+
+.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: $white;
+ }
+
+ &#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;
+ }
+}