coreui-rails 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/Gemfile +6 -0
  4. data/Gemfile.lock +27 -0
  5. data/LICENSE +21 -0
  6. data/README.md +40 -0
  7. data/Rakefile +2 -0
  8. data/app/assets/stylesheets/_bootstrap-variables.scss +119 -0
  9. data/app/assets/stylesheets/_coreui-variables.scss +1 -0
  10. data/app/assets/stylesheets/_custom.scss +1 -0
  11. data/app/assets/stylesheets/bootstrap/_alert.scss +51 -0
  12. data/app/assets/stylesheets/bootstrap/_badge.scss +47 -0
  13. data/app/assets/stylesheets/bootstrap/_breadcrumb.scss +38 -0
  14. data/app/assets/stylesheets/bootstrap/_button-group.scss +166 -0
  15. data/app/assets/stylesheets/bootstrap/_buttons.scss +143 -0
  16. data/app/assets/stylesheets/bootstrap/_card.scss +270 -0
  17. data/app/assets/stylesheets/bootstrap/_carousel.scss +191 -0
  18. data/app/assets/stylesheets/bootstrap/_close.scss +34 -0
  19. data/app/assets/stylesheets/bootstrap/_code.scss +56 -0
  20. data/app/assets/stylesheets/bootstrap/_custom-forms.scss +297 -0
  21. data/app/assets/stylesheets/bootstrap/_dropdown.scss +131 -0
  22. data/app/assets/stylesheets/bootstrap/_forms.scss +333 -0
  23. data/app/assets/stylesheets/bootstrap/_functions.scss +86 -0
  24. data/app/assets/stylesheets/bootstrap/_grid.scss +52 -0
  25. data/app/assets/stylesheets/bootstrap/_images.scss +42 -0
  26. data/app/assets/stylesheets/bootstrap/_input-group.scss +159 -0
  27. data/app/assets/stylesheets/bootstrap/_jumbotron.scss +16 -0
  28. data/app/assets/stylesheets/bootstrap/_list-group.scss +115 -0
  29. data/app/assets/stylesheets/bootstrap/_media.scss +8 -0
  30. data/app/assets/stylesheets/bootstrap/_mixins.scss +42 -0
  31. data/app/assets/stylesheets/bootstrap/_modal.scss +168 -0
  32. data/app/assets/stylesheets/bootstrap/_nav.scss +118 -0
  33. data/app/assets/stylesheets/bootstrap/_navbar.scss +311 -0
  34. data/app/assets/stylesheets/bootstrap/_pagination.scss +77 -0
  35. data/app/assets/stylesheets/bootstrap/_popover.scss +183 -0
  36. data/app/assets/stylesheets/bootstrap/_print.scss +124 -0
  37. data/app/assets/stylesheets/bootstrap/_progress.scss +33 -0
  38. data/app/assets/stylesheets/bootstrap/_reboot.scss +482 -0
  39. data/app/assets/stylesheets/bootstrap/_root.scss +19 -0
  40. data/app/assets/stylesheets/bootstrap/_tables.scss +180 -0
  41. data/app/assets/stylesheets/bootstrap/_tooltip.scss +115 -0
  42. data/app/assets/stylesheets/bootstrap/_transitions.scss +36 -0
  43. data/app/assets/stylesheets/bootstrap/_type.scss +125 -0
  44. data/app/assets/stylesheets/bootstrap/_utilities.scss +14 -0
  45. data/app/assets/stylesheets/bootstrap/_variables.scss +894 -0
  46. data/app/assets/stylesheets/bootstrap/bootstrap-grid.scss +32 -0
  47. data/app/assets/stylesheets/bootstrap/bootstrap-reboot.scss +12 -0
  48. data/app/assets/stylesheets/bootstrap/bootstrap.scss +42 -0
  49. data/app/assets/stylesheets/bootstrap/mixins/_alert.scss +13 -0
  50. data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +21 -0
  51. data/app/assets/stylesheets/bootstrap/mixins/_badge.scss +12 -0
  52. data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +35 -0
  53. data/app/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +5 -0
  54. data/app/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +123 -0
  55. data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +109 -0
  56. data/app/assets/stylesheets/bootstrap/mixins/_caret.scss +65 -0
  57. data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +7 -0
  58. data/app/assets/stylesheets/bootstrap/mixins/_float.scss +11 -0
  59. data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +137 -0
  60. data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +45 -0
  61. data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +67 -0
  62. data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +52 -0
  63. data/app/assets/stylesheets/bootstrap/mixins/_hover.scss +39 -0
  64. data/app/assets/stylesheets/bootstrap/mixins/_image.scss +36 -0
  65. data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +21 -0
  66. data/app/assets/stylesheets/bootstrap/mixins/_lists.scss +7 -0
  67. data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  68. data/app/assets/stylesheets/bootstrap/mixins/_navbar-align.scss +10 -0
  69. data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +22 -0
  70. data/app/assets/stylesheets/bootstrap/mixins/_reset-text.scss +17 -0
  71. data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  72. data/app/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +35 -0
  73. data/app/assets/stylesheets/bootstrap/mixins/_size.scss +6 -0
  74. data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +30 -0
  75. data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +14 -0
  76. data/app/assets/stylesheets/bootstrap/mixins/_text-hide.scss +9 -0
  77. data/app/assets/stylesheets/bootstrap/mixins/_text-truncate.scss +8 -0
  78. data/app/assets/stylesheets/bootstrap/mixins/_transition.scss +9 -0
  79. data/app/assets/stylesheets/bootstrap/mixins/_visibility.scss +7 -0
  80. data/app/assets/stylesheets/bootstrap/utilities/_align.scss +8 -0
  81. data/app/assets/stylesheets/bootstrap/utilities/_background.scss +19 -0
  82. data/app/assets/stylesheets/bootstrap/utilities/_borders.scss +59 -0
  83. data/app/assets/stylesheets/bootstrap/utilities/_clearfix.scss +3 -0
  84. data/app/assets/stylesheets/bootstrap/utilities/_display.scss +38 -0
  85. data/app/assets/stylesheets/bootstrap/utilities/_embed.scss +52 -0
  86. data/app/assets/stylesheets/bootstrap/utilities/_flex.scss +46 -0
  87. data/app/assets/stylesheets/bootstrap/utilities/_float.scss +9 -0
  88. data/app/assets/stylesheets/bootstrap/utilities/_position.scss +36 -0
  89. data/app/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +11 -0
  90. data/app/assets/stylesheets/bootstrap/utilities/_sizing.scss +12 -0
  91. data/app/assets/stylesheets/bootstrap/utilities/_spacing.scss +51 -0
  92. data/app/assets/stylesheets/bootstrap/utilities/_text.scss +52 -0
  93. data/app/assets/stylesheets/bootstrap/utilities/_visibility.scss +11 -0
  94. data/app/assets/stylesheets/coreui-free.scss +18 -0
  95. data/app/assets/stylesheets/coreui/_animate.scss +27 -0
  96. data/app/assets/stylesheets/coreui/_aside.scss +64 -0
  97. data/app/assets/stylesheets/coreui/_avatars.scss +51 -0
  98. data/app/assets/stylesheets/coreui/_badge.scss +3 -0
  99. data/app/assets/stylesheets/coreui/_brand-card.scss +51 -0
  100. data/app/assets/stylesheets/coreui/_brands-buttons.scss +47 -0
  101. data/app/assets/stylesheets/coreui/_breadcrumb-menu.scss +36 -0
  102. data/app/assets/stylesheets/coreui/_breadcrumb.scss +4 -0
  103. data/app/assets/stylesheets/coreui/_buttons.scss +18 -0
  104. data/app/assets/stylesheets/coreui/_callout.scss +55 -0
  105. data/app/assets/stylesheets/coreui/_card.scss +107 -0
  106. data/app/assets/stylesheets/coreui/_charts.scss +7 -0
  107. data/app/assets/stylesheets/coreui/_deprecated.scss +175 -0
  108. data/app/assets/stylesheets/coreui/_dropdown-menu-right.scss +8 -0
  109. data/app/assets/stylesheets/coreui/_dropdown.scss +69 -0
  110. data/app/assets/stylesheets/coreui/_footer.scss +9 -0
  111. data/app/assets/stylesheets/coreui/_grid.scss +15 -0
  112. data/app/assets/stylesheets/coreui/_input-group.scss +6 -0
  113. data/app/assets/stylesheets/coreui/_layout.scss +399 -0
  114. data/app/assets/stylesheets/coreui/_loading.scss +128 -0
  115. data/app/assets/stylesheets/coreui/_mixins.scss +116 -0
  116. data/app/assets/stylesheets/coreui/_modal.scss +13 -0
  117. data/app/assets/stylesheets/coreui/_nav.scss +35 -0
  118. data/app/assets/stylesheets/coreui/_navbar.scss +135 -0
  119. data/app/assets/stylesheets/coreui/_others.scss +4 -0
  120. data/app/assets/stylesheets/coreui/_progress-group.scss +40 -0
  121. data/app/assets/stylesheets/coreui/_progress.scss +15 -0
  122. data/app/assets/stylesheets/coreui/_rtl.scss +281 -0
  123. data/app/assets/stylesheets/coreui/_sidebar.scss +454 -0
  124. data/app/assets/stylesheets/coreui/_switches.scss +301 -0
  125. data/app/assets/stylesheets/coreui/_tables.scss +20 -0
  126. data/app/assets/stylesheets/coreui/_temp.scss +39 -0
  127. data/app/assets/stylesheets/coreui/_utilities.scss +4 -0
  128. data/app/assets/stylesheets/coreui/_variables.scss +243 -0
  129. data/app/assets/stylesheets/coreui/_widgets.scss +79 -0
  130. data/app/assets/stylesheets/coreui/coreui.scss +47 -0
  131. data/app/assets/stylesheets/coreui/utilities/_background.scss +20 -0
  132. data/app/assets/stylesheets/coreui/utilities/_borders.scss +18 -0
  133. data/app/assets/stylesheets/coreui/utilities/_display.scss +18 -0
  134. data/app/assets/stylesheets/coreui/utilities/_typography.scss +46 -0
  135. data/coreui-rails.gemspec +19 -0
  136. data/lib/coreui_rails.rb +4 -0
  137. data/lib/coreui_rails/version.rb +3 -0
  138. metadata +195 -0
@@ -0,0 +1,79 @@
1
+ .icons-list {
2
+ padding: 0;
3
+ margin: 0;
4
+ list-style: none;
5
+
6
+ li {
7
+ position: relative;
8
+ height: 40px;
9
+ vertical-align: middle;
10
+
11
+ i {
12
+ display: block;
13
+ float: left;
14
+ width: 35px !important;
15
+ height: 35px !important;
16
+ margin: 2px;
17
+ line-height: 35px !important;
18
+ text-align: center;
19
+ }
20
+
21
+ .desc {
22
+ height: 40px;
23
+ margin-left: 50px;
24
+ border-bottom: 1px solid $border-color;
25
+
26
+ .title {
27
+ padding: 2px 0 0;
28
+ margin: 0;
29
+ }
30
+ small {
31
+ display: block;
32
+ margin-top: -4px;
33
+ color: $text-muted;
34
+ }
35
+ }
36
+
37
+ .value {
38
+ position: absolute;
39
+ top: 2px;
40
+ right: 45px;
41
+ text-align: right;
42
+
43
+ strong {
44
+ display: block;
45
+ margin-top: -3px;
46
+ }
47
+ }
48
+
49
+ .actions {
50
+ position: absolute;
51
+ top: -4px;
52
+ right: 10px;
53
+ width: 40px;
54
+ height: 40px;
55
+ line-height: 40px;
56
+ text-align: center;
57
+
58
+ i {
59
+ float: none;
60
+ width: auto;
61
+ height: auto;
62
+ padding: 0;
63
+ margin: 0;
64
+ line-height: normal;
65
+ }
66
+ }
67
+
68
+ &.divider {
69
+ height: 40px;
70
+
71
+ i {
72
+ width: auto;
73
+ height: auto;
74
+ margin: 2px 0 0;
75
+ font-size: 18px;
76
+ }
77
+ }
78
+ }
79
+ }
@@ -0,0 +1,47 @@
1
+ // Import core styles
2
+ @import "variables";
3
+ @import "mixins";
4
+
5
+ // Animations
6
+ @import "animate";
7
+
8
+ // Components
9
+ @import "aside";
10
+ @import "avatars";
11
+ @import "badge";
12
+ @import "breadcrumb-menu";
13
+ @import "breadcrumb";
14
+ @import "brand-card";
15
+ @import "brands-buttons";
16
+ @import "buttons";
17
+ @import "callout";
18
+ @import "card";
19
+ @import "charts";
20
+ @import "dropdown";
21
+ @import "footer";
22
+ @import "grid";
23
+ @import "input-group";
24
+ @import "loading";
25
+ @import "modal";
26
+ @import "nav";
27
+ @import "navbar";
28
+ @import "progress";
29
+ @import "progress-group";
30
+ @import "sidebar";
31
+ @import "switches";
32
+ @import "tables";
33
+ @import "widgets";
34
+
35
+ // Layout Options
36
+ @import "layout";
37
+
38
+ @import "others";
39
+
40
+ // Utility classes
41
+ @import "utilities";
42
+
43
+ // Temporary fixes
44
+ @import "temp";
45
+
46
+ // Right-to-left
47
+ @import "rtl";
@@ -0,0 +1,20 @@
1
+ .bg-primary,
2
+ .bg-success,
3
+ .bg-info,
4
+ .bg-warning,
5
+ .bg-danger,
6
+ .bg-inverse {
7
+ color: #fff;
8
+ }
9
+
10
+ @each $color, $value in $brands-colors {
11
+ @include bg-variant(".bg-#{$color}", $value);
12
+ }
13
+
14
+ @each $color, $value in $colors {
15
+ @include bg-variant(".bg-#{$color}", $value);
16
+ }
17
+
18
+ @each $color, $value in $grays {
19
+ @include bg-variant(".bg-gray-#{$color}", $value);
20
+ }
@@ -0,0 +1,18 @@
1
+ //border
2
+ @each $prop, $abbrev in (border: b) {
3
+ @each $size in (0,1,2) {
4
+ @if $size == 0 {
5
+ .#{$abbrev}-a-#{$size} { #{$prop}: 0 !important; } // a = All sides
6
+ .#{$abbrev}-t-#{$size} { #{$prop}-top: 0 !important; }
7
+ .#{$abbrev}-r-#{$size} { #{$prop}-right: 0 !important; }
8
+ .#{$abbrev}-b-#{$size} { #{$prop}-bottom: 0 !important; }
9
+ .#{$abbrev}-l-#{$size} { #{$prop}-left: 0 !important; }
10
+ } @else {
11
+ .#{$abbrev}-a-#{$size} { #{$prop}: $size * $border-width solid $border-color !important; } // a = All sides
12
+ .#{$abbrev}-t-#{$size} { #{$prop}-top: $size * $border-width solid $border-color !important; }
13
+ .#{$abbrev}-r-#{$size} { #{$prop}-right: $size * $border-width solid $border-color !important; }
14
+ .#{$abbrev}-b-#{$size} { #{$prop}-bottom: $size * $border-width solid $border-color !important; }
15
+ .#{$abbrev}-l-#{$size} { #{$prop}-left: $size * $border-width solid $border-color !important; }
16
+ }
17
+ }
18
+ }
@@ -0,0 +1,18 @@
1
+ //
2
+ // Utilities for common `display` values
3
+ //
4
+
5
+ @each $breakpoint in map-keys($grid-breakpoints) {
6
+ @include media-breakpoint-down($breakpoint) {
7
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8
+
9
+ .d#{$infix}-down-none { display: none !important; }
10
+ // .d#{$infix}-inline { display: inline !important; }
11
+ // .d#{$infix}-inline-block { display: inline-block !important; }
12
+ // .d#{$infix}-block { display: block !important; }
13
+ // .d#{$infix}-table { display: table !important; }
14
+ // .d#{$infix}-table-cell { display: table-cell !important; }
15
+ // .d#{$infix}-flex { display: flex !important; }
16
+ // .d#{$infix}-inline-flex { display: inline-flex !important; }
17
+ }
18
+ }
@@ -0,0 +1,46 @@
1
+ body {
2
+ -moz-osx-font-smoothing: grayscale;
3
+ -webkit-font-smoothing: antialiased;
4
+ }
5
+
6
+ // stylelint-disable
7
+ .font-xs {
8
+ font-size: .75rem !important;
9
+ }
10
+
11
+ .font-sm {
12
+ font-size: .85rem !important;
13
+ }
14
+
15
+ .font-lg {
16
+ font-size: 1rem !important;
17
+ }
18
+
19
+ .font-xl {
20
+ font-size: 1.25rem !important;
21
+ }
22
+
23
+ .font-2xl {
24
+ font-size: 1.5rem !important;
25
+ }
26
+
27
+ .font-3xl {
28
+ font-size: 1.75rem !important;
29
+ }
30
+
31
+ .font-4xl {
32
+ font-size: 2rem !important;
33
+ }
34
+
35
+ .font-5xl {
36
+ font-size: 2.5rem !important;
37
+ }
38
+
39
+ .text-white .text-muted {
40
+ color: rgba(255, 255, 255, .6);
41
+ }
42
+
43
+ .text-value {
44
+ font-size: ($font-size-base * 1.5);
45
+ font-weight: $font-weight-bold;
46
+ }
@@ -0,0 +1,19 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'coreui_rails/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'coreui-rails'
7
+ spec.version = CoreUI::VERSION
8
+ spec.authors = ['Chris Born']
9
+ spec.email = ['chris@peltedvenom.com']
10
+
11
+ spec.summary = 'Gem to add CoreUI assets to your Rails asset pipeline.'
12
+ spec.description = 'CoreUI is free bootstrap admin template with Angular2, AngularJS, React.js & Vue.js support.'
13
+ spec.homepage = 'https://github.com/pelted/coreui-rails'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
17
+ spec.require_paths = ['lib']
18
+ spec.add_runtime_dependency 'sass', '~> 3.2'
19
+ end
@@ -0,0 +1,4 @@
1
+ module CoreUI
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module CoreUI
2
+ VERSION = '0.2.4'.freeze
3
+ end
metadata ADDED
@@ -0,0 +1,195 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: coreui-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.4
5
+ platform: ruby
6
+ authors:
7
+ - Chris Born
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-01-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.2'
27
+ description: CoreUI is free bootstrap admin template with Angular2, AngularJS, React.js
28
+ & Vue.js support.
29
+ email:
30
+ - chris@peltedvenom.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - ".gitignore"
36
+ - Gemfile
37
+ - Gemfile.lock
38
+ - LICENSE
39
+ - README.md
40
+ - Rakefile
41
+ - app/assets/stylesheets/_bootstrap-variables.scss
42
+ - app/assets/stylesheets/_coreui-variables.scss
43
+ - app/assets/stylesheets/_custom.scss
44
+ - app/assets/stylesheets/bootstrap/_alert.scss
45
+ - app/assets/stylesheets/bootstrap/_badge.scss
46
+ - app/assets/stylesheets/bootstrap/_breadcrumb.scss
47
+ - app/assets/stylesheets/bootstrap/_button-group.scss
48
+ - app/assets/stylesheets/bootstrap/_buttons.scss
49
+ - app/assets/stylesheets/bootstrap/_card.scss
50
+ - app/assets/stylesheets/bootstrap/_carousel.scss
51
+ - app/assets/stylesheets/bootstrap/_close.scss
52
+ - app/assets/stylesheets/bootstrap/_code.scss
53
+ - app/assets/stylesheets/bootstrap/_custom-forms.scss
54
+ - app/assets/stylesheets/bootstrap/_dropdown.scss
55
+ - app/assets/stylesheets/bootstrap/_forms.scss
56
+ - app/assets/stylesheets/bootstrap/_functions.scss
57
+ - app/assets/stylesheets/bootstrap/_grid.scss
58
+ - app/assets/stylesheets/bootstrap/_images.scss
59
+ - app/assets/stylesheets/bootstrap/_input-group.scss
60
+ - app/assets/stylesheets/bootstrap/_jumbotron.scss
61
+ - app/assets/stylesheets/bootstrap/_list-group.scss
62
+ - app/assets/stylesheets/bootstrap/_media.scss
63
+ - app/assets/stylesheets/bootstrap/_mixins.scss
64
+ - app/assets/stylesheets/bootstrap/_modal.scss
65
+ - app/assets/stylesheets/bootstrap/_nav.scss
66
+ - app/assets/stylesheets/bootstrap/_navbar.scss
67
+ - app/assets/stylesheets/bootstrap/_pagination.scss
68
+ - app/assets/stylesheets/bootstrap/_popover.scss
69
+ - app/assets/stylesheets/bootstrap/_print.scss
70
+ - app/assets/stylesheets/bootstrap/_progress.scss
71
+ - app/assets/stylesheets/bootstrap/_reboot.scss
72
+ - app/assets/stylesheets/bootstrap/_root.scss
73
+ - app/assets/stylesheets/bootstrap/_tables.scss
74
+ - app/assets/stylesheets/bootstrap/_tooltip.scss
75
+ - app/assets/stylesheets/bootstrap/_transitions.scss
76
+ - app/assets/stylesheets/bootstrap/_type.scss
77
+ - app/assets/stylesheets/bootstrap/_utilities.scss
78
+ - app/assets/stylesheets/bootstrap/_variables.scss
79
+ - app/assets/stylesheets/bootstrap/bootstrap-grid.scss
80
+ - app/assets/stylesheets/bootstrap/bootstrap-reboot.scss
81
+ - app/assets/stylesheets/bootstrap/bootstrap.scss
82
+ - app/assets/stylesheets/bootstrap/mixins/_alert.scss
83
+ - app/assets/stylesheets/bootstrap/mixins/_background-variant.scss
84
+ - app/assets/stylesheets/bootstrap/mixins/_badge.scss
85
+ - app/assets/stylesheets/bootstrap/mixins/_border-radius.scss
86
+ - app/assets/stylesheets/bootstrap/mixins/_box-shadow.scss
87
+ - app/assets/stylesheets/bootstrap/mixins/_breakpoints.scss
88
+ - app/assets/stylesheets/bootstrap/mixins/_buttons.scss
89
+ - app/assets/stylesheets/bootstrap/mixins/_caret.scss
90
+ - app/assets/stylesheets/bootstrap/mixins/_clearfix.scss
91
+ - app/assets/stylesheets/bootstrap/mixins/_float.scss
92
+ - app/assets/stylesheets/bootstrap/mixins/_forms.scss
93
+ - app/assets/stylesheets/bootstrap/mixins/_gradients.scss
94
+ - app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss
95
+ - app/assets/stylesheets/bootstrap/mixins/_grid.scss
96
+ - app/assets/stylesheets/bootstrap/mixins/_hover.scss
97
+ - app/assets/stylesheets/bootstrap/mixins/_image.scss
98
+ - app/assets/stylesheets/bootstrap/mixins/_list-group.scss
99
+ - app/assets/stylesheets/bootstrap/mixins/_lists.scss
100
+ - app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss
101
+ - app/assets/stylesheets/bootstrap/mixins/_navbar-align.scss
102
+ - app/assets/stylesheets/bootstrap/mixins/_pagination.scss
103
+ - app/assets/stylesheets/bootstrap/mixins/_reset-text.scss
104
+ - app/assets/stylesheets/bootstrap/mixins/_resize.scss
105
+ - app/assets/stylesheets/bootstrap/mixins/_screen-reader.scss
106
+ - app/assets/stylesheets/bootstrap/mixins/_size.scss
107
+ - app/assets/stylesheets/bootstrap/mixins/_table-row.scss
108
+ - app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss
109
+ - app/assets/stylesheets/bootstrap/mixins/_text-hide.scss
110
+ - app/assets/stylesheets/bootstrap/mixins/_text-truncate.scss
111
+ - app/assets/stylesheets/bootstrap/mixins/_transition.scss
112
+ - app/assets/stylesheets/bootstrap/mixins/_visibility.scss
113
+ - app/assets/stylesheets/bootstrap/utilities/_align.scss
114
+ - app/assets/stylesheets/bootstrap/utilities/_background.scss
115
+ - app/assets/stylesheets/bootstrap/utilities/_borders.scss
116
+ - app/assets/stylesheets/bootstrap/utilities/_clearfix.scss
117
+ - app/assets/stylesheets/bootstrap/utilities/_display.scss
118
+ - app/assets/stylesheets/bootstrap/utilities/_embed.scss
119
+ - app/assets/stylesheets/bootstrap/utilities/_flex.scss
120
+ - app/assets/stylesheets/bootstrap/utilities/_float.scss
121
+ - app/assets/stylesheets/bootstrap/utilities/_position.scss
122
+ - app/assets/stylesheets/bootstrap/utilities/_screenreaders.scss
123
+ - app/assets/stylesheets/bootstrap/utilities/_sizing.scss
124
+ - app/assets/stylesheets/bootstrap/utilities/_spacing.scss
125
+ - app/assets/stylesheets/bootstrap/utilities/_text.scss
126
+ - app/assets/stylesheets/bootstrap/utilities/_visibility.scss
127
+ - app/assets/stylesheets/coreui-free.scss
128
+ - app/assets/stylesheets/coreui/_animate.scss
129
+ - app/assets/stylesheets/coreui/_aside.scss
130
+ - app/assets/stylesheets/coreui/_avatars.scss
131
+ - app/assets/stylesheets/coreui/_badge.scss
132
+ - app/assets/stylesheets/coreui/_brand-card.scss
133
+ - app/assets/stylesheets/coreui/_brands-buttons.scss
134
+ - app/assets/stylesheets/coreui/_breadcrumb-menu.scss
135
+ - app/assets/stylesheets/coreui/_breadcrumb.scss
136
+ - app/assets/stylesheets/coreui/_buttons.scss
137
+ - app/assets/stylesheets/coreui/_callout.scss
138
+ - app/assets/stylesheets/coreui/_card.scss
139
+ - app/assets/stylesheets/coreui/_charts.scss
140
+ - app/assets/stylesheets/coreui/_deprecated.scss
141
+ - app/assets/stylesheets/coreui/_dropdown-menu-right.scss
142
+ - app/assets/stylesheets/coreui/_dropdown.scss
143
+ - app/assets/stylesheets/coreui/_footer.scss
144
+ - app/assets/stylesheets/coreui/_grid.scss
145
+ - app/assets/stylesheets/coreui/_input-group.scss
146
+ - app/assets/stylesheets/coreui/_layout.scss
147
+ - app/assets/stylesheets/coreui/_loading.scss
148
+ - app/assets/stylesheets/coreui/_mixins.scss
149
+ - app/assets/stylesheets/coreui/_modal.scss
150
+ - app/assets/stylesheets/coreui/_nav.scss
151
+ - app/assets/stylesheets/coreui/_navbar.scss
152
+ - app/assets/stylesheets/coreui/_others.scss
153
+ - app/assets/stylesheets/coreui/_progress-group.scss
154
+ - app/assets/stylesheets/coreui/_progress.scss
155
+ - app/assets/stylesheets/coreui/_rtl.scss
156
+ - app/assets/stylesheets/coreui/_sidebar.scss
157
+ - app/assets/stylesheets/coreui/_switches.scss
158
+ - app/assets/stylesheets/coreui/_tables.scss
159
+ - app/assets/stylesheets/coreui/_temp.scss
160
+ - app/assets/stylesheets/coreui/_utilities.scss
161
+ - app/assets/stylesheets/coreui/_variables.scss
162
+ - app/assets/stylesheets/coreui/_widgets.scss
163
+ - app/assets/stylesheets/coreui/coreui.scss
164
+ - app/assets/stylesheets/coreui/utilities/_background.scss
165
+ - app/assets/stylesheets/coreui/utilities/_borders.scss
166
+ - app/assets/stylesheets/coreui/utilities/_display.scss
167
+ - app/assets/stylesheets/coreui/utilities/_typography.scss
168
+ - coreui-rails.gemspec
169
+ - lib/coreui_rails.rb
170
+ - lib/coreui_rails/version.rb
171
+ homepage: https://github.com/pelted/coreui-rails
172
+ licenses:
173
+ - MIT
174
+ metadata: {}
175
+ post_install_message:
176
+ rdoc_options: []
177
+ require_paths:
178
+ - lib
179
+ required_ruby_version: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ version: '0'
184
+ required_rubygems_version: !ruby/object:Gem::Requirement
185
+ requirements:
186
+ - - ">="
187
+ - !ruby/object:Gem::Version
188
+ version: '0'
189
+ requirements: []
190
+ rubyforge_project:
191
+ rubygems_version: 2.7.4
192
+ signing_key:
193
+ specification_version: 4
194
+ summary: Gem to add CoreUI assets to your Rails asset pipeline.
195
+ test_files: []