ethosstyles 0.1.8 → 0.1.9
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ee7a8e8774ca63eb84ebd18ec0600244370c927d3b4d639a9f3a8c0e25b77c2
|
|
4
|
+
data.tar.gz: 75cb66856cc713e584ba1b9aad613a0a89ca8a736f7d6eaae98925fab3fb53d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4e1b00bea5d5231cbc2e234668c6fc14cd02a7eef44189e10b0cf82bb8f80a6e58dc70c119683dfb4ce1e5b134815d4c881705d59978ddddcd683cc72d05c32
|
|
7
|
+
data.tar.gz: ffae81acee469f7d195f0e3e6870a40f05308e73b8a04da03ae2aa04dbdce498b1aef6bde65dc26deaf441e1a9242f52ae95a3d137a71a677d9cf22f3333c062
|
|
@@ -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
|
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">
|
data/lib/ethosstyles/version.rb
CHANGED