Initial commit
[yaffs-website] / web / themes / custom / yaffs / scss / _overrides.scss
1 // @todo these should be their own CSS files and only included when
2 // specific Drupal libraries are used.
3 @import "component/alert";
4 @import "component/ajax";
5 @import "component/field";
6 @import "component/file";
7 @import "component/filter";
8 @import "component/form";
9 @import "component/icon";
10 @import "component/navbar";
11 @import "component/node";
12 @import "component/panel";
13 @import "component/progress-bar";
14 @import "component/table-drag";
15 @import "component/tabs";
16 @import "component/toolbar";
17
18 // jQuery UI style overrides.
19 @import "jquery-ui/autocomplete";
20
21 ol, ul {
22   padding-left: 1.5em;
23   .popover &:last-child {
24     margin-bottom: 0;
25   }
26 }
27
28 // Page header.
29 .page-header {
30   margin-top: 0;
31 }
32
33 // Footer.
34 .footer {
35   margin-top: 45px;
36   padding-top: 35px;
37   padding-bottom: 36px;
38   border-top: 1px solid #E5E5E5;
39 }
40
41 // Paragraphs.
42 p:last-child,
43 .form-group:last-child,
44 .panel:last-child {
45   margin-bottom: 0;
46 }
47
48 // Help region.
49 .region-help {
50   > .glyphicon {
51     font-size: $font-size-large;
52     float: left;
53     margin: -0.05em 0.5em 0 0;
54   }
55   .block {
56     overflow: hidden;
57   }
58 }
59
60
61 .help-block, .control-group .help-inline {
62   color: $gray-light;
63   font-size: 12px;
64   margin: 5px 0 10px;
65   padding: 0;
66   &:first-child {
67     margin-top: 0;
68   }
69 }