ethosstyles 0.1.8 → 0.1.9

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: fe969d87f6846095e57c108adade9c3f0705c08753c58e4855fdaceb7ad55f25
4
- data.tar.gz: a79685e98829f618b2cdcd797f0f45248c04f7d363051cb6df8612d1fde5c940
3
+ metadata.gz: 6ee7a8e8774ca63eb84ebd18ec0600244370c927d3b4d639a9f3a8c0e25b77c2
4
+ data.tar.gz: 75cb66856cc713e584ba1b9aad613a0a89ca8a736f7d6eaae98925fab3fb53d5
5
5
  SHA512:
6
- metadata.gz: 6546bf38bad4f8bbe483a1e4e0c086e02c47a187edfc544d82ab4fb392794c21736ee4f3eb2ca9c6f92176d510eef6f205a617a15a13f0259f03d4192067d9da
7
- data.tar.gz: e5f560e091b08d544a915bbfef8b106c05bc41591abaf0475b9e5e98d521f4800b64a7ea25d32f361dd5ecae5d29e5652190acb06548d673ab6eeed28f507587
6
+ metadata.gz: e4e1b00bea5d5231cbc2e234668c6fc14cd02a7eef44189e10b0cf82bb8f80a6e58dc70c119683dfb4ce1e5b134815d4c881705d59978ddddcd683cc72d05c32
7
+ data.tar.gz: ffae81acee469f7d195f0e3e6870a40f05308e73b8a04da03ae2aa04dbdce498b1aef6bde65dc26deaf441e1a9242f52ae95a3d137a71a677d9cf22f3333c062
@@ -1,9 +1,5 @@
1
1
  @import 'settings/test';
2
2
 
3
- @import 'lib/fontawesome/scss/fa-regular.scss';
4
- @import 'lib/fontawesome/scss/fa-solid.scss';
5
- @import 'lib/fontawesome/scss/fa-brands.scss';
6
-
7
3
  @import 'settings/variables';
8
4
 
9
5
  @import 'utilities/animations';
@@ -48,11 +48,6 @@
48
48
  }
49
49
  }
50
50
 
51
- .rf-icon--caret--right:after {
52
- content: "\f0da";
53
- font-family: $font-icon-f5;
54
- }
55
-
56
51
  .rf-icon--refresh:after {
57
52
  content: "\f021";
58
53
  font-family: $font-icon-f5;
@@ -120,6 +115,41 @@
120
115
  font-family: $font-icon-f5-b;
121
116
  }
122
117
 
118
+ .rf-icon--caret--right:after {
119
+ content: "\f0da";
120
+ font-family: $font-icon-f5;
121
+ }
122
+
123
+ .rf-icon--caret--left:after {
124
+ content: "\f0d9";
125
+ font-family: $font-icon-f5;
126
+ }
127
+
128
+ .rf-icon--caret--up:after {
129
+ content: "\f0d8";
130
+ font-family: $font-icon-f5;
131
+ }
132
+
133
+ .rf-icon--caret--down:after {
134
+ content: "\f0d7";
135
+ font-family: $font-icon-f5;
136
+ }
137
+
138
+ .rf-icon--external:after {
139
+ content: "\f360";
140
+ font-family: $font-icon-f5;
141
+ }
142
+
143
+ .rf-icon--minus:after {
144
+ content: "\f068";
145
+ font-family: $font-icon-f5;
146
+ }
147
+
148
+ .rf-icon--plus:after {
149
+ content: "\f067";
150
+ font-family: $font-icon-f5;
151
+ }
152
+
123
153
 
124
154
  //
125
155
  // MODAL
@@ -1 +1,5 @@
1
+ @import 'lib/fontawesome/scss/fa-regular.scss';
2
+ @import 'lib/fontawesome/scss/fa-solid.scss';
3
+ @import 'lib/fontawesome/scss/fa-brands.scss';
4
+
1
5
  @import 'ethosstyles';
data/app/views/icons.php CHANGED
@@ -13,10 +13,6 @@
13
13
  $icon_class = "rf-icon--grip";
14
14
  include 'partial_icons.php';
15
15
  ?>
16
- <?php
17
- $icon_class = "rf-icon--caret--right";
18
- include 'partial_icons.php';
19
- ?>
20
16
  <?php
21
17
  $icon_class = "rf-icon--refresh";
22
18
  include 'partial_icons.php';
@@ -65,6 +61,34 @@
65
61
  $icon_class = "rf-icon--github";
66
62
  include 'partial_icons.php';
67
63
  ?>
64
+ <?php
65
+ $icon_class = "rf-icon--external";
66
+ include 'partial_icons.php';
67
+ ?>
68
+ <?php
69
+ $icon_class = "rf-icon--minus";
70
+ include 'partial_icons.php';
71
+ ?>
72
+ <?php
73
+ $icon_class = "rf-icon--plus";
74
+ include 'partial_icons.php';
75
+ ?>
76
+ <?php
77
+ $icon_class = "rf-icon--caret--right";
78
+ include 'partial_icons.php';
79
+ ?>
80
+ <?php
81
+ $icon_class = "rf-icon--caret--left";
82
+ include 'partial_icons.php';
83
+ ?>
84
+ <?php
85
+ $icon_class = "rf-icon--caret--up";
86
+ include 'partial_icons.php';
87
+ ?>
88
+ <?php
89
+ $icon_class = "rf-icon--caret--down";
90
+ include 'partial_icons.php';
91
+ ?>
68
92
  </section>
69
93
 
70
94
  <section class="rf-section">
@@ -1,3 +1,3 @@
1
1
  module Ethosstyles
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ethosstyles
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethos