annotate 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
rev   line source
Daniel@0 1 @import "../config.less";
Daniel@0 2
Daniel@0 3 .app {
Daniel@0 4 .size(10, 20);
Daniel@0 5 .border-radius(5px);
Daniel@0 6 .border-bottom-right-radius(10px);
Daniel@0 7 background: @--background-color;
Daniel@0 8
Daniel@0 9 // ==================================
Daniel@0 10 &__help {
Daniel@0 11
Daniel@0 12 }
Daniel@0 13
Daniel@0 14 // ==================================
Daniel@0 15 &__notifications {
Daniel@0 16
Daniel@0 17 }
Daniel@0 18
Daniel@0 19 &__assets-version-indicator {
Daniel@0 20 .font_small();
Daniel@0 21 position: fixed;
Daniel@0 22 z-index: @z-index_css-update-indicator;
Daniel@0 23 bottom: 0;
Daniel@0 24 left: 0;
Daniel@0 25 padding: 0 5px;
Daniel@0 26 height: 18px;
Daniel@0 27 line-height: 18px;
Daniel@0 28 @randomColor: `("000000" + Math.floor(Math.random()*16777215).toString(16)).slice(-6)`;
Daniel@0 29 @colorHex: e(@randomColor);
Daniel@0 30 @color: ~"#@{colorHex}";
Daniel@0 31 background-color: @color;
Daniel@0 32 @strokeColor: rgba(255, 255, 255, .2);
Daniel@0 33 .border-top-right-radius(@--border-radius);
Daniel@0 34 text-shadow: 0px 0px 3px #fff,
Daniel@0 35 -1px -1px 0 @strokeColor,
Daniel@0 36 1px -1px 0 @strokeColor,
Daniel@0 37 -1px 1px 0 @strokeColor,
Daniel@0 38 1px 1px 0 @strokeColor;
Daniel@0 39 //box-shadow: 0 0 2px 3px rgba(0,0,0,.3);
Daniel@0 40 }
Daniel@0 41 }