aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2018-11-23 00:24:16 +0300
committerHenry Jameson <me@hjkos.com>2018-11-23 00:24:16 +0300
commit29082e9aee3dc50acfd5f1635f1a09017b83a893 (patch)
tree152a842208085c9ac007f5b77772f8dae6729eb5 /src/App.scss
parentd6f7cb469c95af95791984eabeb301028962e22b (diff)
fixed checkbox styles, optimized default shadows
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/App.scss b/src/App.scss
index e8aa5846..3059d753 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -58,8 +58,6 @@ button {
border-radius: $fallback--btnRadius;
border-radius: var(--btnRadius, $fallback--btnRadius);
cursor: pointer;
- /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
- /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
box-shadow: 0px 0px 2px black;
box-shadow: var(--buttonShadow);
font-size: 14px;
@@ -80,8 +78,7 @@ button {
}
&:active {
- /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
- /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
+ box-shadow: var(--buttonPressedShadow);
}
&:disabled {
@@ -106,8 +103,6 @@ input, textarea, .select {
border: none;
border-radius: $fallback--inputRadius;
border-radius: var(--inputRadius, $fallback--inputRadius);
- /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
- /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
box-shadow: 0px 0px 2px black inset;
box-shadow: var(--inputShadow);
background-color: $fallback--fg;
@@ -184,8 +179,6 @@ input, textarea, .select {
height: 1.1em;
border-radius: $fallback--checkBoxRadius;
border-radius: var(--checkBoxRadius, $fallback--checkBoxRadius);
- border-bottom: 1px solid rgba(255, 255, 255, 0.2);
- border-top: 1px solid rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 2px black inset;
box-shadow: var(--inputShadow);
margin-right: .5em;