comparison src/DML/MainVisBundle/Resources/assets/bem-blocks/app.less @ 0:493bcb69166c

added public content
author Daniel Wolff
date Tue, 09 Feb 2016 20:54:02 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:493bcb69166c
1 @import "../config.less";
2
3 .app {
4 .size(10, 20);
5 .border-radius(5px);
6 .border-bottom-right-radius(10px);
7 background: @--background-color;
8
9 // ==================================
10 &__help {
11
12 }
13
14 // ==================================
15 &__notifications {
16
17 }
18
19 &__assets-version-indicator {
20 .font_small();
21 position: fixed;
22 z-index: @z-index_css-update-indicator;
23 bottom: 0;
24 left: 0;
25 padding: 0 5px;
26 height: 18px;
27 line-height: 18px;
28 @randomColor: `("000000" + Math.floor(Math.random()*16777215).toString(16)).slice(-6)`;
29 @colorHex: e(@randomColor);
30 @color: ~"#@{colorHex}";
31 background-color: @color;
32 @strokeColor: rgba(255, 255, 255, .2);
33 .border-top-right-radius(@--border-radius);
34 text-shadow: 0px 0px 3px #fff,
35 -1px -1px 0 @strokeColor,
36 1px -1px 0 @strokeColor,
37 -1px 1px 0 @strokeColor,
38 1px 1px 0 @strokeColor;
39 //box-shadow: 0 0 2px 3px rgba(0,0,0,.3);
40 }
41 }