arctic_admin 1.2.7 → 1.2.8
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 +4 -4
- data/app/assets/stylesheets/_common.scss +13 -0
- data/app/assets/stylesheets/components/_components.scss +2 -1
- data/app/assets/stylesheets/components/_form.scss +1 -1
- data/app/assets/stylesheets/components/_inputs.scss +16 -0
- data/app/assets/stylesheets/components/_tables.scss +6 -0
- data/app/assets/stylesheets/components/_tabs.scss +34 -0
- data/app/assets/stylesheets/mixins/_buttons_mixins.scss +1 -0
- data/app/assets/stylesheets/pages/_form.scss +12 -1
- data/lib/arctic_admin/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8056cbaa223281771fa3e04ac647e5396227d5b3
|
|
4
|
+
data.tar.gz: e1e488c2647daa0769ef99cc31887d9b3fe73502
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f15eef1e2f7bc00374ca940f06d9fa58d2b9e5cc71b8d6df481cbbe065b49a75c1b9f44ee0e0b895a7ffe73718e57b3a5fb9eb3c4a2e405a42e33b9c94ed828
|
|
7
|
+
data.tar.gz: 3d41b21c93538e4e669fe8f5f7ac57787d1d2f172cc6c56416552ac6c4801a4570b63f96dd6900e6a53d9ac8033563db6167a50b0593aed3ae2102401a50d1c1
|
|
@@ -8,7 +8,20 @@
|
|
|
8
8
|
font-size: 12px;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
+
&.large {
|
|
12
|
+
padding: 10px;
|
|
13
|
+
font-size: 18px;
|
|
14
|
+
}
|
|
15
|
+
|
|
11
16
|
&.action {
|
|
12
17
|
margin-right: 4px;
|
|
13
18
|
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
code {
|
|
22
|
+
display: block;
|
|
23
|
+
background-color: #272822;
|
|
24
|
+
padding: 5px;
|
|
25
|
+
margin: 10px 0;
|
|
26
|
+
color: white;
|
|
14
27
|
}
|
|
@@ -68,6 +68,22 @@ input[type="checkbox"] {
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
input[type="radio"] {
|
|
72
|
+
-webkit-appearance: none;
|
|
73
|
+
border: 2px solid $primary-color;
|
|
74
|
+
width: 15px;
|
|
75
|
+
height: 15px;
|
|
76
|
+
border-radius: 50%;
|
|
77
|
+
margin: 1px;
|
|
78
|
+
display: inline-flex;
|
|
79
|
+
@include outline();
|
|
80
|
+
@include transition-button();
|
|
81
|
+
|
|
82
|
+
&:checked {
|
|
83
|
+
background-color: $primary-color;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
71
87
|
select {
|
|
72
88
|
background-color: #fff;
|
|
73
89
|
background-image: none;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
.tabs.ui-tabs {
|
|
2
|
+
box-shadow: 0 0 4px 0 rgba(0,0,0,.1);
|
|
3
|
+
border-radius: 3px;
|
|
4
|
+
|
|
5
|
+
.nav {
|
|
6
|
+
text-align: center;
|
|
7
|
+
border-bottom: 1px solid $body-background;
|
|
8
|
+
|
|
9
|
+
li {
|
|
10
|
+
display: inline-block;
|
|
11
|
+
@include outline();
|
|
12
|
+
|
|
13
|
+
a {
|
|
14
|
+
color: $text-color;
|
|
15
|
+
display: inline-block;
|
|
16
|
+
padding: 15px 25px;
|
|
17
|
+
@include outline();
|
|
18
|
+
@include transition-button();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.ui-tabs-active {
|
|
22
|
+
border-bottom: 2px solid $primary-color;
|
|
23
|
+
|
|
24
|
+
a {
|
|
25
|
+
color: $primary-color;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tab-content {
|
|
32
|
+
padding: 10px 20px;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -32,7 +32,18 @@ body.logged_in {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&[type='radio'] {
|
|
35
|
-
width:
|
|
35
|
+
width: 15px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.select2-container {
|
|
40
|
+
@media screen and (min-width: $sm-width) {
|
|
41
|
+
width: 50% !important;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
a {
|
|
45
|
+
height: 30px;
|
|
46
|
+
line-height: 30px;
|
|
36
47
|
}
|
|
37
48
|
}
|
|
38
49
|
|
data/lib/arctic_admin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arctic_admin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Clément Prod'homme
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06-
|
|
11
|
+
date: 2017-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -107,6 +107,7 @@ files:
|
|
|
107
107
|
- app/assets/stylesheets/components/_panel_contents.scss
|
|
108
108
|
- app/assets/stylesheets/components/_status_tag.scss
|
|
109
109
|
- app/assets/stylesheets/components/_tables.scss
|
|
110
|
+
- app/assets/stylesheets/components/_tabs.scss
|
|
110
111
|
- app/assets/stylesheets/layouts/_filter.scss
|
|
111
112
|
- app/assets/stylesheets/layouts/_footer.scss
|
|
112
113
|
- app/assets/stylesheets/layouts/_header.scss
|