[TASK] Remove box-shadow css

This commit is contained in:
Xaver Maierhofer 2017-10-26 21:40:55 +02:00
parent 4787aa7f62
commit 2a3dbc9842
No known key found for this signature in database
GPG Key ID: 7FDCE23FD2EC9FE8
10 changed files with 9 additions and 55 deletions

View File

@ -63,7 +63,7 @@ function (d3Interpolate, Map, Sidebar, Tabs, Container, Legend, Linklist,
contentDiv.appendChild(buttons);
var buttonToggle = document.createElement('button');
buttonToggle.classList.add('ion-eye', 'shadow');
buttonToggle.classList.add('ion-eye');
buttonToggle.setAttribute('data-tooltip', _.t('button.switchView'));
buttonToggle.onclick = function onclick() {
var data;

View File

@ -28,7 +28,7 @@ define(['map/clientlayer', 'map/labellayer', 'leaflet', 'map/locationmarker'],
var LocateButton = ButtonBase.extend({
onAdd: function () {
var button = L.DomUtil.create('button', 'ion-locate shadow');
var button = L.DomUtil.create('button', 'ion-locate');
button.setAttribute('data-tooltip', _.t('button.tracking'));
L.DomEvent.disableClickPropagation(button);
L.DomEvent.addListener(button, 'click', this.onClick, this);
@ -45,7 +45,7 @@ define(['map/clientlayer', 'map/labellayer', 'leaflet', 'map/locationmarker'],
var CoordsPickerButton = ButtonBase.extend({
onAdd: function () {
var button = L.DomUtil.create('button', 'ion-pin shadow');
var button = L.DomUtil.create('button', 'ion-pin');
button.setAttribute('data-tooltip', _.t('button.location'));
// Click propagation isn't disabled as this causes problems with the

View File

@ -17,7 +17,7 @@ define(function () {
var button = document.createElement('button');
sidebar.appendChild(button);
button.classList.add('sidebarhandle', 'shadow');
button.classList.add('sidebarhandle');
button.onclick = function onclick() {
sidebar.classList.toggle('hidden');
};

View File

@ -3,7 +3,6 @@
@import 'custom/variables';
// Mixins
@import 'mixins/shadow';
@import 'mixins/icon';
@import 'mixins/font';

View File

@ -1,14 +0,0 @@
// Original is in LESS and can be found here: https://gist.github.com/gefangenimnetz/3ef3e18364edf105c5af
@mixin shadow($level: 1) {
@if $level == 1 {
box-shadow: 0 1px 3px transparentize($color-black, .88), 0 1px 2px transparentize($color-black, .76);
} @else if $level == 2 {
box-shadow: 0 3px 6px transparentize($color-black, .84), 0 3px 6px transparentize($color-black, .77);
} @else if $level == 3 {
box-shadow: 0 10px 20px transparentize($color-black, .81), 0 6px 6px transparentize($color-black, .77);
} @else if $level == 4 {
box-shadow: 0 14px 28px transparentize($color-black, .75), 0 10px 10px transparentize($color-black, .78);
} @else if $level == 5 {
box-shadow: 0 19px 38px transparentize($color-black, .7), 0 15px 12px transparentize($color-black, .78);
}
}

View File

@ -37,20 +37,6 @@ button {
color: $color-primary;
}
@if $shadows == 1 {
&.shadow {
@include shadow(1);
&:hover {
@include shadow(2);
}
&:active {
box-shadow: inset 0 5px 20px transparentize($color-black, .81), inset 0 3px 6px transparentize($color-black, .77);
}
}
}
// Tooltip
&[data-tooltip] {
&::after {
@ -78,9 +64,6 @@ button {
&.close {
background-color: transparent;
border-radius: 0;
@if $shadows == 1 {
box-shadow: none;
}
color: transparentize($color-black, .5);
float: right;
font-size: $button-font-size;

View File

@ -64,12 +64,8 @@
}
.container {
@if $shadows == 1 {
@include shadow(2);
} @else {
border-right: 1px solid darken($color-white, 10%);
}
background: transparentize($color-white, .03);
border-right: 1px solid darken($color-white, 10%);
min-height: 100vh;
overflow-y: visible;
@ -91,9 +87,6 @@
.container,
.infobox {
border-radius: 0;
@if $shadows == 1 {
box-shadow: none;
}
margin: 0;
}
}
@ -120,7 +113,7 @@
left: $sidebar-width + 2 * $button-distance;
position: fixed;
top: $button-distance;
transition: left .5s, box-shadow .5s, color .5s, transform .5s;
transition: left .5s, color .5s, transform .5s;
z-index: 1010;
&::after {

View File

@ -1,11 +1,7 @@
.tabs {
@if $shadows == 1 {
@include shadow(1);
} @else {
border: 0 solid darken($color-white, 10%);
border-bottom-width: 1px;
}
background: transparentize($color-black, .98);
border: 0 solid darken($color-white, 10%);
border-bottom-width: 1px;
display: flex;
display: -webkit-flex; // sass-lint:disable-line no-vendor-prefixes no-duplicate-properties
list-style: none;

View File

@ -43,8 +43,5 @@ $grid-breakpoints: (
$sidebar-width: map-get($grid-breakpoints, xl) * .45 !default;
$sidebar-width-small: map-get($grid-breakpoints, lg) * .45 !default;
// En/disable box-shadows
$shadows: 0 !default;
// En/disable included font
$use-included-font: 1 !default;

View File

@ -1,4 +1,4 @@
// Overwrite normal style (colors) - shadows are ignored
// Overwrite normal style (colors)
@import 'modules/variables';
@import 'custom/variables';