##// END OF EJS Templates
Added glyphicon update to LESS.
tmtabor -
Show More
@@ -1,59 +1,60 b''
1 1 // Our customizations to bootstrap go here.
2 2
3 3 @black: #000;
4 4 @text-color: @black;
5 5 @font-size-base: 13px;
6 6 @font-family-monospace: monospace; // to allow user to customize their fonts
7 7 @navbar-height: 30px;
8 8 @breadcrumb-color: darken(@border_color, 30%);
9 9 @blockquote-font-size: inherit;
10 10 @modal-inner-padding: 15px;
11 11 @grid-float-breakpoint: 541px;
12 12 @screen-xs: 540px;
13 13 @logo_height: 28px;
14 14 @border-radius-small: 1px;
15 15 @border-radius-base: 2px;
16 @border-radius-large: 3px;;
16 @border-radius-large: 3px;
17 17 @grid-gutter-width: 0px;
18 @icon-font-path: "../components/bootstrap/fonts/";
18 19
19 20 // Disable modal slide-in from top animation.
20 21 .modal {
21 22 &.fade .modal-dialog {
22 23 .translate(0, 0);
23 24 }
24 25 }
25 26
26 27 // Set the default code color.
27 28 code {
28 29 color: @black; // default code color in bootstrap is #d14 (crimson / amaranth)
29 30 }
30 31
31 32 // Override bootstrap pre element styling.
32 33 pre {
33 34 // bootstrap has pre defaults that we don't want to inherit.
34 35 // start pre tag defaults based on the surrounding context instead.
35 36 font-size: inherit;
36 37 line-height: inherit;
37 38 }
38 39
39 40 // Disable bold labels in BS3
40 41 label {
41 42 font-weight: normal;
42 43 }
43 44
44 45 // Our own global variables for all pages go here
45 46 @global-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
46 47 @global-shadow-dark: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
47 48 @page-header-padding: 20px;
48 49 /* Make the page background atleast 100% the height of the view port */
49 50 @page-backdrop-height: 100vh;
50 51 /* Make the page itself atleast 70% the height of the view port */
51 52 @page-min-height: 0;
52 53 @page-backdrop-color: #EEE;
53 54 @page-color: @body-bg;
54 55 @page-padding: 15px;
55 56
56 57 // preven container size to jump from 768px to 720px
57 58 // when window width go from 768 to 769+
58 59 @container-sm : @screen-sm-min;
59 60
General Comments 0
You need to be logged in to leave comments. Login now