arctic_admin 1.2.3 → 1.2.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: 613cc08a4cd996bfa75c925f5168c51a14b59c61
4
- data.tar.gz: 8bcba8a4bc6857718fc56515b8968a54c542e107
3
+ metadata.gz: b4114893eb4a515f3fe8e086f36e27ad176104c5
4
+ data.tar.gz: 8f62b1c42eb60fc3eb90889efb763e417aed5f50
5
5
  SHA512:
6
- metadata.gz: 963fb2a231d823b8cb3147b765d9fe76971ddf683db57dfbb1a9c9210bce82dfc4bbf30c0d3d2f2b2ce10c1caec70e448c31d889dca6d92339424511d01613db
7
- data.tar.gz: e328470024a720079bd39ec9cbee74ba0354a2fa5078406e93cd332fac81216ac4504cff9b6310ed242cb4b3c5ac2daa11a6269bb1d42f09b69fcfcb5d6a4061
6
+ metadata.gz: 1b5adb7e37433a27c0f62c9fd4fc3a8d3514ca88d8c912116a01cb014c61d0868d5ca381ce247f119e9839aa9439b13bc63f2a13aae460b6ff9fc595b83b8b62
7
+ data.tar.gz: ee1620a96b18c572ec4dccda8f37a4736915b88db5a5fd4b993c011e5cb17a4e24315ef6869874c2f3dae1a1c2f40a8266a4b1824d658f3f8260d684e7308539
@@ -0,0 +1,54 @@
1
+ .comments {
2
+ background-color: $sidebar-background;
3
+ padding: 10px 15px 15px 15px;
4
+ border-radius: 3px;
5
+ margin-top: 20px;
6
+ @include clear-fix();
7
+
8
+ h3 {
9
+ margin: 0 0 5px 0;
10
+ }
11
+
12
+ .active_admin_comment {
13
+ margin: 10px 0 0 0;
14
+ padding: 5px 0 0 0;
15
+ position: relative;
16
+
17
+ .active_admin_comment_meta {
18
+ .active_admin_comment_author {
19
+ margin: 0;
20
+ display: inline-block;
21
+ }
22
+
23
+ span { // date
24
+ float: right;
25
+ font-size: 14px;
26
+ font-style: italic;
27
+ margin-right: 30px;
28
+ line-height: 21px;
29
+ }
30
+
31
+ a[data-method="delete"] {
32
+ position: absolute;
33
+ top: 0;
34
+ right: 0;
35
+ visibility: hidden;
36
+
37
+ &:after {
38
+ @include icon("\f1f8");
39
+ visibility: visible;
40
+ color: #5a5a5a;
41
+ font-size: 16px;
42
+ padding: 6px;
43
+ display: inline-block;
44
+ }
45
+ }
46
+ }
47
+
48
+ .active_admin_comment_body {
49
+ p {
50
+ margin: 5px 0 0;
51
+ }
52
+ }
53
+ }
54
+ }
@@ -6,4 +6,5 @@
6
6
  @import "components/panel_contents";
7
7
  @import "components/form";
8
8
  @import "components/pagination";
9
- @import "components/dialogs";
9
+ @import "components/dialogs";
10
+ @import "components/comments";
@@ -2,28 +2,37 @@
2
2
  background-color: #fff;
3
3
  padding: 5px;
4
4
  border-radius: 3px;
5
- box-shadow: 0 0 4px 0 rgba(0,0,0,.04);
5
+ box-shadow: 0 0 4px 0 rgba(0,0,0,.1);
6
6
  z-index: 3!important;
7
+ padding: 8px 10px;
7
8
 
8
- .ui-datepicker-prev {
9
- float: left;
10
- }
9
+ .ui-datepicker-header {
10
+ @include clear-fix();
11
+ margin-bottom: 10px;
11
12
 
12
- .ui-datepicker-next {
13
- float: right;
14
- }
13
+ .ui-datepicker-prev, .ui-datepicker-next {
14
+ @include primary-button($primary-color, #fff);
15
+ padding: 2px 5px;
16
+ font-size: 14px;
17
+ }
15
18
 
16
- .ui-datepicker-title {
17
- text-align: center;
18
- }
19
+ .ui-datepicker-prev {
20
+ float: left;
21
+ }
19
22
 
20
- .ui-datepicker-calendar {
21
- tr:hover {
22
- background-color: #fff;
23
+ .ui-datepicker-next {
24
+ float: right;
23
25
  }
24
26
 
27
+ .ui-datepicker-title {
28
+ text-align: center;
29
+ }
30
+ }
31
+
32
+ .ui-datepicker-calendar {
25
33
  td {
26
34
  border: none;
35
+ text-align: center;
27
36
  }
28
37
  }
29
38
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arctic_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clément Prod'homme
@@ -95,6 +95,7 @@ files:
95
95
  - app/assets/stylesheets/_fonts.scss
96
96
  - app/assets/stylesheets/_reset.scss
97
97
  - app/assets/stylesheets/arctic_admin.scss
98
+ - app/assets/stylesheets/components/_comments.scss
98
99
  - app/assets/stylesheets/components/_components.scss
99
100
  - app/assets/stylesheets/components/_date_picker.scss
100
101
  - app/assets/stylesheets/components/_dialogs.scss