arctic_admin 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b57ee8ef7f2c02ed36c8892765e8f56aecf8851c
4
- data.tar.gz: e5a6098e9b6ef9c9ae7fd693efa8a90e2f99ad88
3
+ metadata.gz: 8056cbaa223281771fa3e04ac647e5396227d5b3
4
+ data.tar.gz: e1e488c2647daa0769ef99cc31887d9b3fe73502
5
5
  SHA512:
6
- metadata.gz: 1d5946c37419d4a0281078473c919b76996643648c68d16130727d6ed2faaa323667e5ff8cba8c0cb6c0de4389a0ff262769c832ffd47ceccbec30f733c2952d
7
- data.tar.gz: 10e0f9e047e062dcd5329fac592ec4bab4fcab6c2380362047caf4cd2d9f020a5c8c721ffaa7ebc889cd719591b4fa21ddaab6444c8841f71b5dea7d5cb9e7c3
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
  }
@@ -7,4 +7,5 @@
7
7
  @import "components/form";
8
8
  @import "components/pagination";
9
9
  @import "components/dialogs";
10
- @import "components/comments";
10
+ @import "components/comments";
11
+ @import "components/tabs";
@@ -13,7 +13,7 @@
13
13
  list-style: none;
14
14
  }
15
15
 
16
- legend {
16
+ legend:not(.label) {
17
17
  margin-bottom: 28px;
18
18
  font-size: 18px;
19
19
  display: block;
@@ -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;
@@ -1,5 +1,11 @@
1
1
  table {
2
2
  width: 100%;
3
+
4
+ &:not(.index_table) {
5
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
6
+ border-radius: 3px;
7
+ margin-bottom: 10px;
8
+ }
3
9
  }
4
10
 
5
11
  thead th {
@@ -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
+ }
@@ -12,6 +12,7 @@
12
12
  @mixin primary-button($background-color, $color) {
13
13
  background-color: $background-color;
14
14
  color: $color;
15
+ border: none;
15
16
  @include button();
16
17
 
17
18
  &:hover {
@@ -32,7 +32,18 @@ body.logged_in {
32
32
  }
33
33
 
34
34
  &[type='radio'] {
35
- width: auto;
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
 
@@ -1,3 +1,3 @@
1
1
  module ArcticAdmin
2
- VERSION = "1.2.7"
2
+ VERSION = "1.2.8"
3
3
  end
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.7
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-05 00:00:00.000000000 Z
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