captive-admin 0.2.3 → 0.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
  SHA256:
3
- metadata.gz: a29f689e96d0ba9ef088bdc143dba8071e23e508cffdd8fa46aee86641b662ad
4
- data.tar.gz: 5038655af50b1c97c4bbf08520fcc75976f14b69e43b5887b6ff91aabcd8c310
3
+ metadata.gz: 3d699609143e4fb942473a6a2975a62196903bd0ed4060cddbc1ae7048df1184
4
+ data.tar.gz: dc6a068e70bd685e7f63f8314e828f3d60b2850b50e02893075b62ec97f3ffe0
5
5
  SHA512:
6
- metadata.gz: 5b3802c0de855bda1e7a450d2efbd8863f638dddb93dffa427329f7ffef31654db8f67bc7af882234a0159c16285236f931887f426874f4cd27edaa720bcfcee
7
- data.tar.gz: 3fb96174f38732c4f7df708065323b834cf3596911318752b8100130276e061aec68462528e82d35235e1f7eadffd9257187d00c639eac7a65d6ce20508e61e7
6
+ metadata.gz: 4a230b2419eb1e0e95a5eddd944548b440bce1b7865c46b652ef3108c7b4e9984b4b6a998f5f10e86d75578cf8e46287bc5e45b05e6685cf127f74be2f080bd6
7
+ data.tar.gz: 32424813fc3673d157f48d8c5791dfb2d9b9d6c747847fa9672d62d84bd270888ee00d4440dd9f40bea0dd3083a02ce35f0977db0ed9b5c860a3560a8c2d7804
@@ -10,9 +10,13 @@
10
10
  @import './components/breadcrumbs';
11
11
  @import './components/dropdown_menu';
12
12
  @import './components/links';
13
+ @import './components/pagination';
13
14
  @import './components/panels';
15
+ @import './components/scopes';
14
16
  @import './components/status_tags';
17
+ @import './components/table_tools';
15
18
  @import './pages/logged_out';
19
+ @import './structure/footer';
16
20
  @import './structure/main_structure';
17
21
  @import './structure/title_bar';
18
22
 
@@ -54,3 +58,7 @@
54
58
  }
55
59
  }
56
60
  }
61
+
62
+ * {
63
+ @include transition;
64
+ }
@@ -1,10 +1,70 @@
1
1
  form {
2
+ width: $spacer-13;
3
+ padding: $spacer-5 0;
4
+
2
5
  fieldset {
6
+ padding: 0;
7
+ margin: 0;
8
+
3
9
  &.inputs {
4
10
  background-color: $bg-subtle;
11
+ box-shadow: none;
12
+ border-radius: 0;
13
+ }
14
+
15
+ ol > li {
16
+ padding: 0;
17
+ margin-bottom: $spacer-5;
18
+
19
+ label {
20
+ @include body-medium;
21
+
22
+ float: none;
23
+ width: auto;
24
+ margin-bottom: $spacer-1;
25
+
26
+ abbr {
27
+ color: $primary-fg;
28
+ padding-left: $spacer-1;
29
+
30
+ &[title] {
31
+ text-decoration: none;
32
+ }
33
+ }
34
+ }
35
+ }
36
+ }
37
+
38
+ /* Text Fields */
39
+ input[type='text'],
40
+ input[type='password'],
41
+ input[type='email'],
42
+ input[type='number'],
43
+ input[type='url'],
44
+ input[type='tel'],
45
+ input[type='date'],
46
+ input[type='time'],
47
+ textarea {
48
+ width: 100%;
49
+ border-color: $border-color;
50
+ @include body-large;
51
+
52
+ border-radius: $border-radius-xs;
53
+ padding: $spacer-3;
54
+
55
+ &:focus {
56
+ border: 2px solid $border-color-emphasis;
57
+ box-shadow: none;
5
58
  }
6
59
  }
7
60
 
61
+ /* Errors */
62
+ p.inline-errors {
63
+ font-weight: bold;
64
+ margin: $spacer-1 0;
65
+ text-align: right;
66
+ }
67
+
8
68
  /* Buttons */
9
69
  input[type='submit'],
10
70
  form input[type='button'],
@@ -13,4 +73,36 @@ form {
13
73
 
14
74
  cursor: pointer;
15
75
  }
76
+
77
+ .buttons,
78
+ .actions {
79
+ margin-top: $spacer-5;
80
+ }
81
+
82
+ fieldset.buttons li,
83
+ fieldset.actions li {
84
+ float: none;
85
+ margin-bottom: 0;
86
+
87
+ &.cancel a {
88
+ outline: 0;
89
+ box-shadow: none;
90
+ text-decoration: underline;
91
+ padding-left: 0;
92
+ color: $fg-muted;
93
+
94
+ &:hover {
95
+ text-decoration: none;
96
+ }
97
+ }
98
+ }
99
+
100
+ .actions {
101
+ ol {
102
+ display: flex;
103
+ flex-direction: row-reverse;
104
+ justify-content: space-between;
105
+ align-items: center;
106
+ }
107
+ }
16
108
  }
@@ -69,9 +69,9 @@
69
69
  }
70
70
 
71
71
  a {
72
- padding: $spacer-2 $spacer-3;
72
+ padding: $spacer-2 $spacer-4;
73
73
  font-weight: bold;
74
- border-radius: 20px;
74
+ border-radius: $border-radius-m;
75
75
  }
76
76
 
77
77
  &:hover > a {
@@ -88,15 +88,18 @@
88
88
 
89
89
  /* Drop down menus */
90
90
  ul {
91
- background: $bg-default;
92
91
  @include rounded-all(12px, 12px, 12px, 12px);
93
92
 
93
+ background: $bg-default;
94
94
  text-align: left;
95
95
  box-shadow: $shadow-m;
96
+ min-width: $spacer-11;
96
97
 
97
98
  li {
98
99
  a {
99
100
  color: $fg-default;
101
+ padding-top: $spacer-3;
102
+ padding-bottom: $spacer-3;
100
103
 
101
104
  &:hover {
102
105
  background: $bg-subtle;
@@ -15,3 +15,7 @@ h6 {
15
15
  letter-spacing: 0.5px;
16
16
  margin-top: 0;
17
17
  }
18
+
19
+ p {
20
+ margin-bottom: $spacer-4;
21
+ }
@@ -2,7 +2,7 @@
2
2
  @include body-medium;
3
3
 
4
4
  text-transform: none;
5
- margin-bottom: 0;
5
+ margin-bottom: $spacer-1;
6
6
 
7
7
  a,
8
8
  a:link,
@@ -13,7 +13,7 @@
13
13
  background: none;
14
14
  border: none;
15
15
  box-shadow: $shadow-m;
16
- border-radius: 12px;
16
+ border-radius: $border-radius-s;
17
17
  padding: 0;
18
18
  overflow: hidden;
19
19
 
@@ -21,12 +21,15 @@
21
21
  border: none;
22
22
  box-shadow: none;
23
23
  padding: $spacer-3 0;
24
- min-width: 120px;
24
+ min-width: $spacer-11;
25
25
 
26
26
  li {
27
+ border: none;
28
+
27
29
  a {
28
30
  padding: $spacer-3 $spacer-4;
29
31
  text-align: left;
32
+ @include body-medium;
30
33
 
31
34
  &:hover {
32
35
  background-image: none;
@@ -0,0 +1,7 @@
1
+ .pagination_information {
2
+ color: $fg-subtle;
3
+
4
+ b {
5
+ color: $fg-default;
6
+ }
7
+ }
@@ -0,0 +1,11 @@
1
+ .scopes {
2
+ li {
3
+ .count {
4
+ color: $fg-default;
5
+ }
6
+
7
+ &:first-child a {
8
+ margin-left: 0;
9
+ }
10
+ }
11
+ }
@@ -1,6 +1,6 @@
1
1
  .status_tag {
2
2
  border: 1px solid;
3
- border-radius: 20px;
3
+ border-radius: $border-radius-m;
4
4
  letter-spacing: 0.5px;
5
5
  padding: $spacer-2 $spacer-3;
6
6
 
@@ -0,0 +1,60 @@
1
+ .table_tools {
2
+ display: flex;
3
+ align-items: center;
4
+ margin-bottom: $spacer-2;
5
+ }
6
+
7
+ a.table_tools_button,
8
+ .table_tools .dropdown_menu_button {
9
+ @include body-medium;
10
+
11
+ font-weight: normal;
12
+ outline: none;
13
+ padding: $spacer-2 $spacer-4;
14
+ box-shadow: none;
15
+ background: none;
16
+ @include transition;
17
+
18
+ &:not(.disabled) {
19
+ &:hover {
20
+ background: none;
21
+ border-color: $border-color-emphasis;
22
+ }
23
+
24
+ &:active {
25
+ transform: scale(0.925);
26
+ box-shadow: none;
27
+ background: none;
28
+ border-color: $border-color-emphasis;
29
+ color: $fg-default;
30
+ }
31
+ }
32
+ }
33
+
34
+ .table_tools_segmented_control {
35
+ li {
36
+ a {
37
+ border: 1px solid $border-color;
38
+ border-radius: $border-radius-m;
39
+ margin-right: $spacer-2;
40
+ }
41
+
42
+ &:first-child a {
43
+ border-radius: $border-radius-m;
44
+ }
45
+
46
+ &:last-child a {
47
+ border-radius: $border-radius-m;
48
+ }
49
+
50
+ &.selected a {
51
+ background: $bg-subtle;
52
+ box-shadow: none;
53
+ border: 2px solid $border-color-emphasis;
54
+
55
+ &:hover {
56
+ background: $bg-subtle;
57
+ }
58
+ }
59
+ }
60
+ }
@@ -6,6 +6,7 @@ table.index_table {
6
6
  th {
7
7
  padding: $spacer-4;
8
8
  color: $fg-subtle;
9
+ background: transparent;
9
10
 
10
11
  a,
11
12
  a:link,
@@ -15,7 +16,7 @@ table.index_table {
15
16
 
16
17
  &.sorted-asc,
17
18
  &.sorted-desc {
18
- background: $bg-default;
19
+ background: transparent;
19
20
 
20
21
  a {
21
22
  color: $fg-default;
@@ -28,12 +29,20 @@ table.index_table {
28
29
  }
29
30
 
30
31
  tr.even td {
31
- background: $bg-default;
32
+ background: transparent;
32
33
  }
33
34
 
34
35
  td {
35
- border-bottom: 1px solid $blue-grey-100;
36
+ border-bottom: 1px solid $border-color;
36
37
  vertical-align: middle;
37
38
  padding: $spacer-4;
39
+
40
+ &:first-child {
41
+ padding-left: 0;
42
+ }
43
+
44
+ &:last-child {
45
+ text-align: right;
46
+ }
38
47
  }
39
48
  }
@@ -2,4 +2,5 @@
2
2
  @import './shadows';
3
3
  @import './buttons';
4
4
  @import './sections';
5
+ @import './transitions';
5
6
  @import './typography';
@@ -28,6 +28,9 @@
28
28
  border: none;
29
29
  text-shadow: none;
30
30
  box-shadow: $shadow-s;
31
+ @include body-medium;
32
+
33
+ padding: $spacer-3 $spacer-4;
31
34
 
32
35
  &:not(.disabled) {
33
36
  &:hover {
@@ -0,0 +1,4 @@
1
+ @mixin transition {
2
+ transition-property: transform, background-color, border-color;
3
+ transition-duration: 0.2s;
4
+ }
@@ -10,9 +10,14 @@
10
10
  font-family: $title-font-family;
11
11
  }
12
12
 
13
+ @mixin body-large {
14
+ font-size: $f4;
15
+ line-height: 1.5;
16
+ }
17
+
13
18
  @mixin body-medium {
14
19
  font-size: $f5;
15
- line-height: 1.5;
20
+ line-height: 18px;
16
21
  }
17
22
 
18
23
  @mixin body-small {
@@ -1,3 +1,4 @@
1
1
  @import 'captive-theme/variables';
2
2
 
3
3
  $menu-arrow-light-icon-url: 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgY2xhc3M9InctOCBtci00IGljb24tY2hldmVyb24tZG93biI+PHBhdGggY2xhc3M9InNlY29uZGFyeSIgZmlsbD0iI2ZmZmZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTUuMyAxMC4zYTEgMSAwIDAgMSAxLjQgMS40bC00IDRhMSAxIDAgMCAxLTEuNCAwbC00LTRhMSAxIDAgMCAxIDEuNC0xLjRsMy4zIDMuMjkgMy4zLTMuM3oiPjwvcGF0aD48L3N2Zz4=';
4
+ $error-color: $danger-fg;
@@ -0,0 +1,19 @@
1
+ #footer {
2
+ background: $bg-default;
3
+ padding: $spacer-4 $spacer-6;
4
+ @include body-medium;
5
+
6
+ clear: both;
7
+
8
+ p {
9
+ padding-top: $spacer-4;
10
+ }
11
+ }
12
+
13
+ #index_footer {
14
+ padding-top: $spacer-1;
15
+ text-align: right;
16
+ @include body-small;
17
+
18
+ margin-bottom: $spacer-6;
19
+ }
@@ -1,3 +1,14 @@
1
1
  #active_admin_content {
2
- padding: $spacer-3 $spacer-6;
2
+ padding: 0;
3
+
4
+ &.with_sidebar {
5
+ padding-right: $spacer-6;
6
+ }
7
+
8
+ #main_content_wrapper {
9
+ #main_content {
10
+ padding: $spacer-4 $spacer-6;
11
+ background: $bg-subtle;
12
+ }
13
+ }
3
14
  }
@@ -2,7 +2,7 @@
2
2
  border-bottom: none;
3
3
  background: none;
4
4
  box-shadow: none;
5
- padding: $spacer-3 $spacer-6;
5
+ padding: $spacer-4 $spacer-6;
6
6
 
7
7
  h2 {
8
8
  @include title-large;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: captive-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Captive
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-10-18 00:00:00.000000000 Z
12
+ date: 2023-10-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -31,14 +31,14 @@ dependencies:
31
31
  requirements:
32
32
  - - '='
33
33
  - !ruby/object:Gem::Version
34
- version: 0.2.3
34
+ version: 0.2.5
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - '='
40
40
  - !ruby/object:Gem::Version
41
- version: 0.2.3
41
+ version: 0.2.5
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: rspec-rails
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -70,16 +70,21 @@ files:
70
70
  - app/assets/stylesheets/captive-admin/components/_breadcrumbs.scss
71
71
  - app/assets/stylesheets/captive-admin/components/_dropdown_menu.scss
72
72
  - app/assets/stylesheets/captive-admin/components/_links.scss
73
+ - app/assets/stylesheets/captive-admin/components/_pagination.scss
73
74
  - app/assets/stylesheets/captive-admin/components/_panels.scss
75
+ - app/assets/stylesheets/captive-admin/components/_scopes.scss
74
76
  - app/assets/stylesheets/captive-admin/components/_status_tags.scss
77
+ - app/assets/stylesheets/captive-admin/components/_table_tools.scss
75
78
  - app/assets/stylesheets/captive-admin/components/_tables.scss
76
79
  - app/assets/stylesheets/captive-admin/mixins/_all.scss
77
80
  - app/assets/stylesheets/captive-admin/mixins/_buttons.scss
78
81
  - app/assets/stylesheets/captive-admin/mixins/_sections.scss
79
82
  - app/assets/stylesheets/captive-admin/mixins/_shadows.scss
83
+ - app/assets/stylesheets/captive-admin/mixins/_transitions.scss
80
84
  - app/assets/stylesheets/captive-admin/mixins/_typography.scss
81
85
  - app/assets/stylesheets/captive-admin/mixins/_variables.scss
82
86
  - app/assets/stylesheets/captive-admin/pages/_logged_out.scss
87
+ - app/assets/stylesheets/captive-admin/structure/_footer.scss
83
88
  - app/assets/stylesheets/captive-admin/structure/_main_structure.scss
84
89
  - app/assets/stylesheets/captive-admin/structure/_title_bar.scss
85
90
  - lib/captive/admin.rb
@@ -90,7 +95,7 @@ licenses:
90
95
  - MIT
91
96
  metadata:
92
97
  homepage_uri: https://captive.fr/
93
- source_code_uri: https://github.com/Captive-Studio/captive-sdk/tree/v0.2.3/captive-admin
98
+ source_code_uri: https://github.com/Captive-Studio/captive-sdk/tree/v0.2.5/captive-admin
94
99
  post_install_message:
95
100
  rdoc_options: []
96
101
  require_paths: