Skip to content
Snippets Groups Projects
Commit 013c9a18 authored by carljbowman's avatar carljbowman
Browse files

Modified some UI details with new color system

Updates include modifications to interaction states for the following: tabs, add menus, forms, and stage selector.
parent 4e30c0b0
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,14 @@ $more-button-size: 2.25rem; ...@@ -35,7 +35,14 @@ $more-button-size: 2.25rem;
border-radius: 100%; border-radius: 100%;
width: $main-button-size; width: $main-button-size;
height: $main-button-size; height: $main-button-size;
box-shadow: 0 0 0 4px $motion-transparent;
z-index: 20; /* TODO reorder layout to prevent z-index need */ z-index: 20; /* TODO reorder layout to prevent z-index need */
transition: transform, box-shadow 0.5s;
}
.main-button:hover {
transform: scale(1.1);
box-shadow: 0 0 0 6px $motion-transparent;
} }
.main-icon { .main-icon {
......
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
min-width: 0; min-width: 0;
} }
.input-form:hover {
border-color: $motion-primary;
}
.input-form:focus { .input-form:focus {
border-color: $motion-primary; border-color: $motion-primary;
box-shadow: 0 0 0 0.25rem $motion-transparent; box-shadow: 0 0 0 0.25rem $motion-transparent;
......
...@@ -87,7 +87,12 @@ ...@@ -87,7 +87,12 @@
z-index: 1; z-index: 1;
} }
.tab:hover {
background-color: $ui-primary;
}
.tab.is-selected { .tab.is-selected {
height: 90%;
color: $motion-primary; color: $motion-primary;
background-color: $ui-white; background-color: $ui-white;
z-index: 4; /* Make sure selected is always above */ z-index: 4; /* Make sure selected is always above */
...@@ -95,6 +100,7 @@ ...@@ -95,6 +100,7 @@
.tab img { .tab img {
margin-right: 0.125rem; margin-right: 0.125rem;
width: 1.375rem;
filter: grayscale(100%); filter: grayscale(100%);
} }
......
...@@ -42,7 +42,7 @@ const Meter = props => { ...@@ -42,7 +42,7 @@ const Meter = props => {
/> />
))} ))}
<rect <rect
fill="white" fill="hsla(215, 100%, 95%, 1)"
height={(nBarsToMask * (barHeight + barSpacing)) + (barSpacing / 2)} height={(nBarsToMask * (barHeight + barSpacing)) + (barSpacing / 2)}
opacity="0.75" opacity="0.75"
width={width} width={width}
......
...@@ -69,8 +69,7 @@ ...@@ -69,8 +69,7 @@
} }
.raised { .raised {
background-color: #cce1ff; background-color: #8cbcff;
border-color: #8cbcff;
transition: all 0.25s ease; transition: all 0.25s ease;
} }
......
...@@ -73,6 +73,7 @@ $header-height: calc($stage-menu-height - 2px); ...@@ -73,6 +73,7 @@ $header-height: calc($stage-menu-height - 2px);
width: 100%; width: 100%;
user-select: none; user-select: none;
border-bottom: 1px solid $ui-black-transparent; border-bottom: 1px solid $ui-black-transparent;
box-shadow: inset 0 0 4px $ui-black-transparent;
} }
.add-button { .add-button {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment