optimacms 0.2.18 → 0.2.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 34d35b35ecd981251da3c15cda1d961a2051a6c2
4
- data.tar.gz: c7492638ec9ee2b6985a616b475132a3cf660935
3
+ metadata.gz: 45222a100aaf97efc47565fceceffa6384726401
4
+ data.tar.gz: 0f1055bcd0d193f450055eda31f93e36961c948a
5
5
  SHA512:
6
- metadata.gz: 44e9e3fe106a517244edaa80c69c5a2a42cd136ea537bf8456aa43ca48cd0f4b75b6533d4130a5ba93088e54ff2d8469ab6c4a98a9923f80fc1dd15bd1c04bbc
7
- data.tar.gz: e0d79e3af9ead40a31c6f96cd38b6c76c470b33f50c5a27fe01e460990decbb0587529e29b41e405f59e6431420a039e4e98c1d93752b31907373c849a513053
6
+ metadata.gz: 10c01fdeb7628274b1480d35ea65628380b06b3ac9f4cd7d8d2680b0e60fe0da3cdce889ddad3e1b814359841542fe9ce8069df2770954ed7614680066b574e1
7
+ data.tar.gz: 713dd174047a505a159a95eec1f91632c634ca2c2977ac537a12e9da82d0d9d5357d727fdc321847d98dbee38ba4e4dee2d2dd5aa8b37ac3f36f75d342a3c99e
@@ -0,0 +1,16 @@
1
+ @import "colors";
2
+ @import "tpl";
3
+ @import "skins/noskin";
4
+
5
+
6
+ code, pre{
7
+ border:1px #333333 dotted;
8
+ background-color: #e4edf4;
9
+ color: #134161;
10
+ }
11
+
12
+ /* forms */
13
+
14
+ .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
15
+ margin-left: -30px;
16
+ }
@@ -0,0 +1,52 @@
1
+ // navbar
2
+
3
+ .navbar{
4
+ min-height: 10px;
5
+ }
6
+
7
+ .navbar-brand{
8
+ height: 40px;
9
+ padding-top: 8px;
10
+ padding-bottom: 8px;
11
+ }
12
+
13
+ // tabs - bordered
14
+
15
+ .nav-tabs-bordered{
16
+ border-bottom-width: 1px;
17
+ border-bottom-color: $col-sel-bg;
18
+ }
19
+
20
+ .nav-tabs-bordered > li.active > a,
21
+ .nav-tabs-bordered > li.active > a:hover,
22
+ .nav-tabs-bordered > li.active > a:focus
23
+ {
24
+ background-color: $col-sel-bg;
25
+ color:#ffffff;
26
+ border: 1px solid $col-sel-bg;
27
+ border-bottom-width: 1px;
28
+ border-bottom-color: $col-sel-bg;
29
+ }
30
+
31
+ .nav-tabs-bordered > li > a{
32
+ color: $text-color;
33
+ background-color: #ffffff;
34
+ border: 1px solid $gray-light;
35
+ border-bottom-width: 1px;
36
+ border-bottom-color: $col-sel-bg;
37
+ border-radius: 4px 4px 0 0;
38
+
39
+
40
+
41
+ &:hover{
42
+ background-color: $gray-lighter;
43
+ border: 1px solid $gray-light;
44
+ }
45
+
46
+ &:focus{
47
+
48
+ }
49
+ }
50
+
51
+
52
+
@@ -0,0 +1,50 @@
1
+ // Core variables and mixins
2
+ @import "bootstrap/variables";
3
+ @import "bootstrap/mixins";
4
+
5
+ // Reset and dependencies
6
+ @import "bootstrap/normalize";
7
+ @import "bootstrap/print";
8
+ @import "bootstrap/glyphicons";
9
+
10
+ // Core CSS
11
+ @import "bootstrap/scaffolding";
12
+ @import "bootstrap/type";
13
+ @import "bootstrap/code";
14
+ @import "bootstrap/grid";
15
+ @import "bootstrap/tables";
16
+ @import "bootstrap/forms";
17
+ @import "bootstrap/buttons";
18
+
19
+ // Components
20
+ @import "bootstrap/component-animations";
21
+ @import "bootstrap/dropdowns";
22
+ @import "bootstrap/button-groups";
23
+ @import "bootstrap/input-groups";
24
+ @import "bootstrap/navs";
25
+ @import "bootstrap/navbar";
26
+ @import "bootstrap/breadcrumbs";
27
+ @import "bootstrap/pagination";
28
+ @import "bootstrap/pager";
29
+ @import "bootstrap/labels";
30
+ @import "bootstrap/badges";
31
+ @import "bootstrap/jumbotron";
32
+ @import "bootstrap/thumbnails";
33
+ @import "bootstrap/alerts";
34
+ @import "bootstrap/progress-bars";
35
+ @import "bootstrap/media";
36
+ @import "bootstrap/list-group";
37
+ @import "bootstrap/panels";
38
+ @import "bootstrap/responsive-embed";
39
+ @import "bootstrap/wells";
40
+ @import "bootstrap/close";
41
+
42
+ // Components w/ JavaScript
43
+ @import "bootstrap/modals";
44
+ @import "bootstrap/tooltip";
45
+ @import "bootstrap/popovers";
46
+ @import "bootstrap/carousel";
47
+
48
+ // Utility classes
49
+ @import "bootstrap/utilities";
50
+ @import "bootstrap/responsive-utilities";