c80_md 0.1.0.13 → 0.1.0.14

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: 969e5688a695b4b3b978de87847c2792501d39b0
4
- data.tar.gz: 9c33c7074a3be82589e94c768c0a7555ebf0f219
3
+ metadata.gz: 82cd1fba753a0f9b7f139745e4c2e5699e977cfd
4
+ data.tar.gz: 03d5fe067faa8062051fe6bb68ace4b8108e6401
5
5
  SHA512:
6
- metadata.gz: 43b9384169ad6d7f65211fb17d264fab1bcbb89a44c4aac16136fdee7c25304f0f171e136660b7d174b8a40e79c25e37979a14fb22f3ee3792dd3d55bc865cb9
7
- data.tar.gz: f6930a1c80d9a16497cf3823e48e301d95f323f3540e13c0a6e2f11926b23b400ecf228fdc3e786ec02614abb83c543e8c541b87f37bd5d197574a8114fadb5e
6
+ metadata.gz: e69c2ff4336d8386b698208a82652604ba945e3eff6a92b353367533ccf4a5df1139f68adf1eac6d778bc21f6e7d6cb9e00a9b45db90ccdb044069f004c1ae64
7
+ data.tar.gz: 668a95cfbd61bb817186d579ec837b70b297e059a1c1a7d6091807a5e609cf99b2c2c6a5b9ee9d72fab93d47c2a7fd0c18e41ce1d79e55a528d88f40d3d4d207
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ c80_md
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.3.3
@@ -0,0 +1,5 @@
1
+ $c80_md_link_color: #288feb;
2
+
3
+ .c80_md_link_color {
4
+ color: $c80_md_link_color;
5
+ }
@@ -1,7 +1,7 @@
1
1
  @import "elements/**/*";
2
2
 
3
3
  body * {
4
- font-family: "Open Sans" !important;
4
+ font-family: "Open Sans", serif;
5
5
  font-weight: 400;
6
6
  font-size: 14px;
7
7
  }
@@ -1,16 +1,20 @@
1
1
 
2
- /* line 12, /home/scout/git/bitbucket/101km/vendor/bundle/ruby/2.1.0/gems/activeadmin-1.0.0.pre2/app/assets/stylesheets/active_admin/mixins/_buttons.scss */
3
- a.table_tools_button.disabled, .table_tools .dropdown_menu_button.disabled {
2
+ a.table_tools_button.disabled,
3
+ .table_tools .dropdown_menu_button.disabled {
4
4
  opacity: 0.5;
5
5
  cursor: default;
6
6
  }
7
- /* line 50, /home/scout/git/bitbucket/101km/vendor/bundle/ruby/2.1.0/gems/activeadmin-1.0.0.pre2/app/assets/stylesheets/active_admin/mixins/_buttons.scss */
8
- a.table_tools_button:not(.disabled):hover, .table_tools .dropdown_menu_button:not(.disabled):hover {
7
+
8
+ //noinspection CssOptimizeSimilarProperties
9
+ a.table_tools_button:not(.disabled):hover,
10
+ .table_tools .dropdown_menu_button:not(.disabled):hover {
9
11
  background-color: #FFFFFF;
10
12
  background-image: linear-gradient(180deg, #FFFFFF, #F1F1F1);
11
13
  }
12
- /* line 54, /home/scout/git/bitbucket/101km/vendor/bundle/ruby/2.1.0/gems/activeadmin-1.0.0.pre2/app/assets/stylesheets/active_admin/mixins/_buttons.scss */
13
- a.table_tools_button:not(.disabled):active, .table_tools .dropdown_menu_button:not(.disabled):active {
14
+
15
+ //noinspection ALL
16
+ a.table_tools_button:not(.disabled):active,
17
+ .table_tools .dropdown_menu_button:not(.disabled):active {
14
18
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22) inset, 0 1px 0 0px #EEE;
15
19
  border-color: #b9b9b9;
16
20
  border-top-color: #c2c2c2;
@@ -20,13 +24,17 @@ a.table_tools_button:not(.disabled):active, .table_tools .dropdown_menu_button:n
20
24
  background-color: #F3F3F3;
21
25
  background-image: linear-gradient(180deg, #F3F3F3, #D8D8D8);
22
26
  }
23
- /* line 19, /home/scout/git/bitbucket/101km/vendor/bundle/ruby/2.1.0/gems/activeadmin-1.0.0.pre2/app/assets/stylesheets/active_admin/components/_table_tools.scss */
24
- a.table_tools_button:not(.disabled):hover, .table_tools .dropdown_menu_button:not(.disabled):hover {
27
+
28
+ //noinspection CssOptimizeSimilarProperties
29
+ a.table_tools_button:not(.disabled):hover,
30
+ .table_tools .dropdown_menu_button:not(.disabled):hover {
25
31
  background-color: #FFFFFF;
26
32
  background-image: linear-gradient(180deg, #FFFFFF, #F6F6F6);
27
33
  }
28
- /* line 23, /home/scout/git/bitbucket/101km/vendor/bundle/ruby/2.1.0/gems/activeadmin-1.0.0.pre2/app/assets/stylesheets/active_admin/components/_table_tools.scss */
29
- a.table_tools_button:not(.disabled):active, .table_tools .dropdown_menu_button:not(.disabled):active {
34
+
35
+ //noinspection ALL
36
+ a.table_tools_button:not(.disabled):active,
37
+ .table_tools .dropdown_menu_button:not(.disabled):active {
30
38
  border-color: #c8c8c8;
31
39
  border-top-color: #d7d7d7;
32
40
  border-right-color: #c8c8c8;
@@ -0,0 +1,17 @@
1
+ /*Кнопка "Групповые операции"*/
2
+
3
+ div.table_tools {
4
+ div.batch_actions_selector {
5
+ a {
6
+
7
+ &.dropdown_menu_button {
8
+ padding-right:25px !important;
9
+ }
10
+
11
+ &.disabled {
12
+
13
+ }
14
+
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,20 @@
1
+ /*===[ СТИЛИ ДЛЯ КНОПОК: 'Сетка', 'Таблица' ]======================================================================== */
2
+
3
+ //noinspection CssOptimizeSimilarProperties
4
+ .table_tools_segmented_control {
5
+ li {
6
+
7
+ float: right;
8
+
9
+ a {
10
+ margin-left: 5px;
11
+ }
12
+
13
+ &.selected {
14
+ a {
15
+ background-color: #d0d0d0 !important;
16
+ }
17
+ }
18
+
19
+ }
20
+ }
@@ -9,7 +9,7 @@ div.title_bar {
9
9
  span.breadcrumb {
10
10
  margin-top: 12px;
11
11
  a {
12
- color: #288feb !important;
12
+ color: $c80_md_link_color !important;
13
13
  font-weight: bold;
14
14
  }
15
15
  }
@@ -1,3 +1,3 @@
1
1
  module C80Md
2
- VERSION = "0.1.0.13"
2
+ VERSION = "0.1.0.14"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: c80_md
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.13
4
+ version: 0.1.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - C80609A
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-11-03 00:00:00.000000000 Z
11
+ date: 2017-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -60,6 +60,8 @@ extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
62
  - ".gitignore"
63
+ - ".ruby-gemset"
64
+ - ".ruby-version"
63
65
  - ".travis.yml"
64
66
  - CODE_OF_CONDUCT.md
65
67
  - Gemfile
@@ -70,6 +72,7 @@ files:
70
72
  - app/assets/images/orderable2.png
71
73
  - app/assets/stylesheets/lib_customs/c80_social_networks.scss
72
74
  - app/assets/stylesheets/mat_design.scss
75
+ - app/assets/stylesheets/mat_design/colors.scss
73
76
  - app/assets/stylesheets/mat_design/common.scss
74
77
  - app/assets/stylesheets/mat_design/elements/buttons/buttons.scss
75
78
  - app/assets/stylesheets/mat_design/elements/buttons/table_tools.scss
@@ -79,6 +82,8 @@ files:
79
82
  - app/assets/stylesheets/mat_design/elements/main_content.scss
80
83
  - app/assets/stylesheets/mat_design/elements/sidebar.scss
81
84
  - app/assets/stylesheets/mat_design/elements/table.scss
85
+ - app/assets/stylesheets/mat_design/elements/table_tools/batch_actions_selector.scss
86
+ - app/assets/stylesheets/mat_design/elements/table_tools_segmented_control/table_tools_segmented_control.scss
82
87
  - app/assets/stylesheets/mat_design/elements/title_bar.scss
83
88
  - bin/console
84
89
  - bin/setup
@@ -106,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
111
  version: '0'
107
112
  requirements: []
108
113
  rubyforge_project:
109
- rubygems_version: 2.5.1
114
+ rubygems_version: 2.6.11
110
115
  signing_key:
111
116
  specification_version: 4
112
117
  summary: nope