arctic_admin 1.2.4 → 1.2.5

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: b4114893eb4a515f3fe8e086f36e27ad176104c5
4
- data.tar.gz: 8f62b1c42eb60fc3eb90889efb763e417aed5f50
3
+ metadata.gz: 484c455c6976c0120f996a585115d2283d40baaa
4
+ data.tar.gz: 1dbb7aca99fc3c1592e134f6d4e9d6617186a807
5
5
  SHA512:
6
- metadata.gz: 1b5adb7e37433a27c0f62c9fd4fc3a8d3514ca88d8c912116a01cb014c61d0868d5ca381ce247f119e9839aa9439b13bc63f2a13aae460b6ff9fc595b83b8b62
7
- data.tar.gz: ee1620a96b18c572ec4dccda8f37a4736915b88db5a5fd4b993c011e5cb17a4e24315ef6869874c2f3dae1a1c2f40a8266a4b1824d658f3f8260d684e7308539
6
+ metadata.gz: d5f8f107387285d8a4b4cb3c5684e73882c4e002903de311c768eb8c834e83a8583c4eaf7da0880a21464539174926f02e8c9130418369652797c212c3bcf8f6
7
+ data.tar.gz: c59bfad74339d4d10d0aaca1e8b3d5c4f6e70eb07eeea9df58de9aae5fad94001fb2ad96c07cc1972c11c81b1183ed7fe23c111d34a4fea1a5de41a9bc67dfba
@@ -7,6 +7,7 @@ $(function() {
7
7
  var width = $(this).width();
8
8
  if (e.pageX < position.left) {
9
9
  if ($(this).css('right') == '0px') {
10
+ $(this).css('position', 'fixed');
10
11
  $(this).animate({
11
12
  right: "-="+width
12
13
  }, 600, function() {
@@ -16,6 +17,7 @@ $(function() {
16
17
  $(this).animate({
17
18
  right: "+="+width
18
19
  }, 600, function() {
20
+ $(this).css('position', 'absolute');
19
21
  animationFilterDone = true;
20
22
  });
21
23
  }
@@ -4,6 +4,8 @@
4
4
 
5
5
  @import "mixins/mixins";
6
6
 
7
+ @import "common";
8
+
7
9
  @import "components/components";
8
10
 
9
11
  @import "layouts/header";
@@ -0,0 +1,14 @@
1
+ .button {
2
+ @include primary-button($primary-color, #fff);
3
+ padding: 5px 8px;
4
+ font-size: 16px;
5
+
6
+ &.small {
7
+ padding: 2px 9px;
8
+ font-size: 12px;
9
+ }
10
+
11
+ &.action {
12
+ margin-right: 4px;
13
+ }
14
+ }
@@ -28,4 +28,10 @@ ol, ul {
28
28
 
29
29
  th {
30
30
  font-weight: normal;
31
- }
31
+ }
32
+
33
+ abbr[title] {
34
+ border-bottom: none;
35
+ cursor: inherit;
36
+ text-decoration: none;
37
+ }
@@ -1,6 +1,19 @@
1
1
  .panel_contents {
2
+ .attributes_table {
3
+ th {
4
+ border-top: 1px solid #e4eaec;
5
+ }
6
+ }
7
+
8
+ .paginated_collection {
9
+ #index_footer {
10
+ margin: 10px;
11
+ text-align: right;
12
+ font-size: 12px;
13
+ }
14
+ }
15
+
2
16
  th {
3
- border-top: 1px solid #e4eaec;
4
17
  text-align: left;
5
18
  padding: 8px;
6
19
  }
@@ -36,6 +36,11 @@
36
36
  @media screen and (min-width: $lg-width) {
37
37
  width: $lg-header-width;
38
38
  }
39
+
40
+ #site_title_image {
41
+ height: 100%;
42
+ padding: 6px 0;
43
+ }
39
44
  }
40
45
 
41
46
  #utility_nav {
@@ -124,6 +129,8 @@
124
129
  a {
125
130
  visibility: hidden;
126
131
  position: relative;
132
+ width: 60px;
133
+ display: block;
127
134
 
128
135
  &:before {
129
136
  @include icon("\f011");
@@ -182,4 +189,4 @@
182
189
  #page_title {
183
190
  margin: 0;
184
191
  }
185
- }
192
+ }
@@ -27,6 +27,18 @@ body.logged_in {
27
27
  height: 30px;
28
28
  }
29
29
 
30
+ .fragment {
31
+ margin-right: 10px;
32
+
33
+ label {
34
+ padding-right: 5px;
35
+ }
36
+
37
+ select {
38
+ min-width: auto;
39
+ }
40
+ }
41
+
30
42
  &.boolean {
31
43
  margin-left: 25%;
32
44
 
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.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clément Prod'homme
@@ -92,6 +92,7 @@ files:
92
92
  - app/assets/fonts/Lato-Regular.woff2
93
93
  - app/assets/javascripts/arctic_admin.js
94
94
  - app/assets/stylesheets/_base.scss
95
+ - app/assets/stylesheets/_common.scss
95
96
  - app/assets/stylesheets/_fonts.scss
96
97
  - app/assets/stylesheets/_reset.scss
97
98
  - app/assets/stylesheets/arctic_admin.scss