govuk_admin_template 2.3.3 → 2.3.4
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdfa85b6555d0e44bd630b9653127e1dec903315
|
|
4
|
+
data.tar.gz: baa018f4f29f150d5251d58661300a0ebc6c20f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26dc516c73da55fc2036e5e29b7c91b65aaf78679d9a066b88853d7558a1d2ca84b2c873f36d0d0150fa644f43f79a9afa42a1a047407d015fbf0ff01ef667a4
|
|
7
|
+
data.tar.gz: 35fcdc4700f92ed3c3cf899c76f2426ef9c1fcd57888ec78bf9a1e199203adfde394e3a9daeb8f7ecc25ec00d83e12555777503a589e04a2614e9f701d8bc063
|
data/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,85 @@
|
|
|
2
2
|
IE7 Bootstrap 3 fixes
|
|
3
3
|
via https://github.com/coliff/bootstrap-ie7
|
|
4
4
|
|
|
5
|
-
* Linearises grid
|
|
6
5
|
* Doesn't fix IE6, but it helps.
|
|
7
6
|
* Fixes glyphicon font
|
|
8
7
|
* Fixes small layout issues mostly by applying hasLayout
|
|
8
|
+
* Creates a limited grid system that works without box sizing support
|
|
9
|
+
* Uses important to override highly specific styles included by RespondJS
|
|
9
10
|
*/
|
|
10
11
|
|
|
12
|
+
.col-xs-1,
|
|
13
|
+
.col-md-1,
|
|
14
|
+
.col-sm-1 {
|
|
15
|
+
width: 60px !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.col-xs-2,
|
|
19
|
+
.col-md-2,
|
|
20
|
+
.col-sm-2 {
|
|
21
|
+
width: 140px !important;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.col-xs-3,
|
|
25
|
+
.col-md-3,
|
|
26
|
+
.col-sm-3 {
|
|
27
|
+
width: 220px !important;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.col-xs-4,
|
|
31
|
+
.col-md-4,
|
|
32
|
+
.col-sm-4 {
|
|
33
|
+
width: 300px !important;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.col-xs-5,
|
|
37
|
+
.col-md-5,
|
|
38
|
+
.col-sm-5 {
|
|
39
|
+
width: 380px !important;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.col-xs-6,
|
|
43
|
+
.col-md-6,
|
|
44
|
+
.col-sm-6 {
|
|
45
|
+
width: 460px !important;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.col-xs-7,
|
|
49
|
+
.col-md-7,
|
|
50
|
+
.col-sm-7 {
|
|
51
|
+
width: 540px !important;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.col-xs-8,
|
|
55
|
+
.col-md-8,
|
|
56
|
+
.col-sm-8 {
|
|
57
|
+
width: 620px !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.col-xs-9,
|
|
61
|
+
.col-md-9,
|
|
62
|
+
.col-sm-9 {
|
|
63
|
+
width: 700px !important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.col-xs-10,
|
|
67
|
+
.col-md-10,
|
|
68
|
+
.col-sm-10 {
|
|
69
|
+
width: 780px !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.col-xs-11,
|
|
73
|
+
.col-md-11,
|
|
74
|
+
.col-sm-11 {
|
|
75
|
+
width: 860px !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.col-xs-12,
|
|
79
|
+
.col-md-12,
|
|
80
|
+
.col-sm-12 {
|
|
81
|
+
width: 940px !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
11
84
|
.col-xs-1,
|
|
12
85
|
.col-xs-2,
|
|
13
86
|
.col-xs-3,
|
|
@@ -43,17 +116,28 @@
|
|
|
43
116
|
.col-md-9,
|
|
44
117
|
.col-md-10,
|
|
45
118
|
.col-md-11,
|
|
46
|
-
.col-md-12
|
|
47
|
-
.row {
|
|
119
|
+
.col-md-12 {
|
|
48
120
|
padding-left: 0;
|
|
49
121
|
padding-right: 0;
|
|
50
|
-
|
|
51
|
-
|
|
122
|
+
min-height: 1px;
|
|
123
|
+
margin-left: 20px;
|
|
124
|
+
margin-right: 0;
|
|
125
|
+
float: left;
|
|
52
126
|
}
|
|
53
127
|
|
|
54
128
|
.row {
|
|
55
|
-
margin-left:
|
|
56
|
-
|
|
129
|
+
margin-left: -20px;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.row:before,
|
|
133
|
+
.row:after {
|
|
134
|
+
display: table;
|
|
135
|
+
line-height: 0;
|
|
136
|
+
content: "";
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.row:after {
|
|
140
|
+
clear: both;
|
|
57
141
|
}
|
|
58
142
|
|
|
59
143
|
audio,
|
|
@@ -116,11 +200,28 @@ input[type="radio"] {
|
|
|
116
200
|
input[type="text"],
|
|
117
201
|
input[type="password"] {
|
|
118
202
|
height: 22px;
|
|
203
|
+
padding-left: 0;
|
|
204
|
+
padding-right: 0;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
textarea.form-control {
|
|
208
|
+
padding-left: 0;
|
|
209
|
+
padding-right: 0;
|
|
119
210
|
}
|
|
120
211
|
|
|
121
212
|
.container,
|
|
122
213
|
.container-fluid {
|
|
123
214
|
zoom: 1;
|
|
215
|
+
width: 940px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.container-fluid {
|
|
219
|
+
width: 970px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
header .container,
|
|
223
|
+
header .container-fluid {
|
|
224
|
+
width: auto;
|
|
124
225
|
}
|
|
125
226
|
|
|
126
227
|
.row {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: govuk_admin_template
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GOV.UK Dev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|