flipper-ui 0.2.0.beta2 → 0.2.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +12 -11
- data/README.md +5 -7
- data/examples/basic.ru +27 -26
- data/flipper-ui.gemspec +5 -3
- data/lib/flipper-ui.rb +1 -0
- data/lib/flipper/ui.rb +11 -2
- data/lib/flipper/ui/action.rb +45 -4
- data/lib/flipper/ui/actions/actors_gate.rb +48 -0
- data/lib/flipper/ui/actions/add_feature.rb +20 -0
- data/lib/flipper/ui/actions/boolean_gate.rb +26 -0
- data/lib/flipper/ui/actions/feature.rb +32 -0
- data/lib/flipper/ui/actions/features.rb +23 -3
- data/lib/flipper/ui/actions/file.rb +1 -1
- data/lib/flipper/ui/actions/gate.rb +11 -117
- data/lib/flipper/ui/actions/groups_gate.rb +43 -0
- data/lib/flipper/ui/actions/{index.rb → home.rb} +3 -3
- data/lib/flipper/ui/actions/percentage_of_actors_gate.rb +27 -0
- data/lib/flipper/ui/actions/percentage_of_time_gate.rb +27 -0
- data/lib/flipper/ui/actor.rb +13 -0
- data/lib/flipper/ui/assets/javascripts/application.coffee +0 -305
- data/lib/flipper/ui/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/lib/flipper/ui/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/lib/flipper/ui/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/lib/flipper/ui/assets/stylesheets/_bootstrap.scss +50 -0
- data/lib/flipper/ui/assets/stylesheets/application.scss +33 -216
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_badges.scss +68 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_buttons.scss +160 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_carousel.scss +269 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_close.scss +36 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_forms.scss +578 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_glyphicons.scss +305 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_list-group.scss +124 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_media.scss +61 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_mixins.scss +39 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_modals.scss +150 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_navbar.scss +662 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_navs.scss +242 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_normalize.scss +427 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_pagination.scss +88 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_panels.scss +265 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_popovers.scss +135 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_print.scss +107 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_scaffolding.scss +162 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_theme.scss +273 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_tooltip.scss +102 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_utilities.scss +55 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_variables.scss +866 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/lib/flipper/ui/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/lib/flipper/ui/assets/stylesheets/primer/.scss-lint.yml +446 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_alerts.scss +106 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_avatars.scss +36 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_base.scss +40 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_blankslate.scss +96 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_buttons.scss +404 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_counter.scss +10 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_filter-list.scss +68 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_flex-table.scss +20 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_forms.scss +756 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_layout.scss +69 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_menu.scss +113 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_mixins.scss +53 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_normalize.scss +425 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_states.scss +32 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_tabnav.scss +65 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_tooltips.scss +255 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_truncate.scss +27 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_type.scss +92 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_utility.scss +73 -0
- data/lib/flipper/ui/assets/stylesheets/primer/_variables.scss +34 -0
- data/lib/flipper/ui/assets/stylesheets/primer/primer.scss +39 -0
- data/lib/flipper/ui/decorators/feature.rb +37 -4
- data/lib/flipper/ui/middleware.rb +12 -3
- data/lib/flipper/ui/public/css/application.css +2563 -144
- data/lib/flipper/ui/public/css/primer.css +1 -0
- data/lib/flipper/ui/public/css/primer/primer.css +1933 -0
- data/lib/flipper/ui/public/css/scss/primer.css +1933 -0
- data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/lib/flipper/ui/public/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/lib/flipper/ui/public/js/application.js +0 -539
- data/lib/flipper/ui/public/js/bootstrap-sprockets.js +12 -0
- data/lib/flipper/ui/public/js/bootstrap.js +2317 -0
- data/lib/flipper/ui/public/js/bootstrap.min.js +7 -0
- data/lib/flipper/ui/public/js/bootstrap/affix.js +162 -0
- data/lib/flipper/ui/public/js/bootstrap/alert.js +94 -0
- data/lib/flipper/ui/public/js/bootstrap/button.js +116 -0
- data/lib/flipper/ui/public/js/bootstrap/carousel.js +237 -0
- data/lib/flipper/ui/public/js/bootstrap/collapse.js +211 -0
- data/lib/flipper/ui/public/js/bootstrap/dropdown.js +161 -0
- data/lib/flipper/ui/public/js/bootstrap/modal.js +339 -0
- data/lib/flipper/ui/public/js/bootstrap/popover.js +108 -0
- data/lib/flipper/ui/public/js/bootstrap/scrollspy.js +172 -0
- data/lib/flipper/ui/public/js/bootstrap/tab.js +153 -0
- data/lib/flipper/ui/public/js/bootstrap/tooltip.js +476 -0
- data/lib/flipper/ui/public/js/bootstrap/transition.js +59 -0
- data/lib/flipper/ui/public/octicons/LICENSE.txt +9 -0
- data/lib/flipper/ui/public/octicons/README.md +1 -0
- data/lib/flipper/ui/public/octicons/octicons-local.ttf +0 -0
- data/lib/flipper/ui/public/octicons/octicons.css +236 -0
- data/lib/flipper/ui/public/octicons/octicons.eot +0 -0
- data/lib/flipper/ui/public/octicons/octicons.less +235 -0
- data/lib/flipper/ui/public/octicons/octicons.svg +200 -0
- data/lib/flipper/ui/public/octicons/octicons.ttf +0 -0
- data/lib/flipper/ui/public/octicons/octicons.woff +0 -0
- data/lib/flipper/ui/public/octicons/sprockets-octicons.scss +232 -0
- data/lib/flipper/ui/util.rb +4 -0
- data/lib/flipper/ui/version.rb +1 -1
- data/lib/flipper/ui/views/add_actor.erb +22 -0
- data/lib/flipper/ui/views/add_feature.erb +18 -0
- data/lib/flipper/ui/views/add_group.erb +31 -0
- data/lib/flipper/ui/views/feature.erb +209 -0
- data/lib/flipper/ui/views/features.erb +46 -0
- data/lib/flipper/ui/views/layout.erb +31 -149
- data/script/release +15 -0
- data/spec/flipper/ui/actions/actors_gate_spec.rb +68 -0
- data/spec/flipper/ui/actions/add_feature_spec.rb +17 -0
- data/spec/flipper/ui/actions/boolean_gate_spec.rb +41 -0
- data/spec/flipper/ui/actions/feature_spec.rb +59 -0
- data/spec/flipper/ui/actions/features_spec.rb +37 -0
- data/spec/flipper/ui/actions/file_spec.rb +43 -0
- data/spec/flipper/ui/actions/gate_spec.rb +24 -0
- data/spec/flipper/ui/actions/groups_gate_spec.rb +80 -0
- data/spec/flipper/ui/actions/home_spec.rb +16 -0
- data/spec/flipper/ui/actions/percentage_of_actors_gate_spec.rb +40 -0
- data/spec/flipper/ui/actions/percentage_of_time_gate_spec.rb +39 -0
- data/spec/flipper/ui/decorators/feature_spec.rb +38 -1
- data/spec/flipper/ui/decorators/gate_spec.rb +1 -1
- data/spec/flipper/ui_spec.rb +18 -441
- data/spec/helper.rb +22 -7
- metadata +199 -52
- data/examples/flipper.html +0 -14
- data/examples/flipper.png +0 -0
- data/lib/flipper/ui/assets/javascripts/spine/ajax.coffee +0 -223
- data/lib/flipper/ui/assets/javascripts/spine/list.coffee +0 -43
- data/lib/flipper/ui/assets/javascripts/spine/local.coffee +0 -16
- data/lib/flipper/ui/assets/javascripts/spine/manager.coffee +0 -83
- data/lib/flipper/ui/assets/javascripts/spine/relation.coffee +0 -148
- data/lib/flipper/ui/assets/javascripts/spine/route.coffee +0 -146
- data/lib/flipper/ui/assets/javascripts/spine/spine.coffee +0 -542
- data/lib/flipper/ui/assets/javascripts/spine/version +0 -1
- data/lib/flipper/ui/public/css/images/animated-overlay.gif +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-icons_222222_256x240.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-icons_228ef1_256x240.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-icons_ef8c08_256x240.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-icons_ffd27a_256x240.png +0 -0
- data/lib/flipper/ui/public/css/images/ui-icons_ffffff_256x240.png +0 -0
- data/lib/flipper/ui/public/css/jquery-ui-1.10.3.slider.min.css +0 -5
- data/lib/flipper/ui/public/js/handlebars.js +0 -1992
- data/lib/flipper/ui/public/js/jquery-ui-1.10.3.slider.min.js +0 -6
- data/lib/flipper/ui/public/js/jquery.js +0 -9555
- data/lib/flipper/ui/public/js/jquery.min.js +0 -4
- data/lib/flipper/ui/public/js/jquery.min.map +0 -1
- data/lib/flipper/ui/public/js/spine/ajax.js +0 -320
- data/lib/flipper/ui/public/js/spine/list.js +0 -72
- data/lib/flipper/ui/public/js/spine/local.js +0 -29
- data/lib/flipper/ui/public/js/spine/manager.js +0 -157
- data/lib/flipper/ui/public/js/spine/relation.js +0 -260
- data/lib/flipper/ui/public/js/spine/route.js +0 -223
- data/lib/flipper/ui/public/js/spine/spine.js +0 -927
- data/lib/flipper/ui/views/index.erb +0 -9
@@ -0,0 +1,59 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: transition.js v3.3.4
|
3
|
+
* http://getbootstrap.com/javascript/#transitions
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2015 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
14
|
+
// ============================================================
|
15
|
+
|
16
|
+
function transitionEnd() {
|
17
|
+
var el = document.createElement('bootstrap')
|
18
|
+
|
19
|
+
var transEndEventNames = {
|
20
|
+
WebkitTransition : 'webkitTransitionEnd',
|
21
|
+
MozTransition : 'transitionend',
|
22
|
+
OTransition : 'oTransitionEnd otransitionend',
|
23
|
+
transition : 'transitionend'
|
24
|
+
}
|
25
|
+
|
26
|
+
for (var name in transEndEventNames) {
|
27
|
+
if (el.style[name] !== undefined) {
|
28
|
+
return { end: transEndEventNames[name] }
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
return false // explicit for ie8 ( ._.)
|
33
|
+
}
|
34
|
+
|
35
|
+
// http://blog.alexmaccaw.com/css-transitions
|
36
|
+
$.fn.emulateTransitionEnd = function (duration) {
|
37
|
+
var called = false
|
38
|
+
var $el = this
|
39
|
+
$(this).one('bsTransitionEnd', function () { called = true })
|
40
|
+
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
41
|
+
setTimeout(callback, duration)
|
42
|
+
return this
|
43
|
+
}
|
44
|
+
|
45
|
+
$(function () {
|
46
|
+
$.support.transition = transitionEnd()
|
47
|
+
|
48
|
+
if (!$.support.transition) return
|
49
|
+
|
50
|
+
$.event.special.bsTransitionEnd = {
|
51
|
+
bindType: $.support.transition.end,
|
52
|
+
delegateType: $.support.transition.end,
|
53
|
+
handle: function (e) {
|
54
|
+
if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
|
55
|
+
}
|
56
|
+
}
|
57
|
+
})
|
58
|
+
|
59
|
+
}(jQuery);
|
@@ -0,0 +1,9 @@
|
|
1
|
+
(c) 2012-2015 GitHub
|
2
|
+
|
3
|
+
When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)
|
4
|
+
|
5
|
+
Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
|
6
|
+
Applies to all font files
|
7
|
+
|
8
|
+
Code License: MIT (http://choosealicense.com/licenses/mit/)
|
9
|
+
Applies to all other files
|
@@ -0,0 +1 @@
|
|
1
|
+
If you intend to install Octicons locally, install `octicons-local.ttf`. It should appear as “github-octicons” in your font list. It is specially designed not to conflict with GitHub's web fonts.
|
Binary file
|
@@ -0,0 +1,236 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: 'octicons';
|
3
|
+
src: url('octicons.eot?#iefix') format('embedded-opentype'),
|
4
|
+
url('octicons.woff') format('woff'),
|
5
|
+
url('octicons.ttf') format('truetype'),
|
6
|
+
url('octicons.svg#octicons') format('svg');
|
7
|
+
font-weight: normal;
|
8
|
+
font-style: normal;
|
9
|
+
}
|
10
|
+
|
11
|
+
/*
|
12
|
+
|
13
|
+
.octicon is optimized for 16px.
|
14
|
+
.mega-octicon is optimized for 32px but can be used larger.
|
15
|
+
|
16
|
+
*/
|
17
|
+
.octicon, .mega-octicon {
|
18
|
+
font: normal normal normal 16px/1 octicons;
|
19
|
+
display: inline-block;
|
20
|
+
text-decoration: none;
|
21
|
+
text-rendering: auto;
|
22
|
+
-webkit-font-smoothing: antialiased;
|
23
|
+
-moz-osx-font-smoothing: grayscale;
|
24
|
+
-webkit-user-select: none;
|
25
|
+
-moz-user-select: none;
|
26
|
+
-ms-user-select: none;
|
27
|
+
user-select: none;
|
28
|
+
}
|
29
|
+
.mega-octicon { font-size: 32px; }
|
30
|
+
|
31
|
+
.octicon-alert:before { content: '\f02d'} /* */
|
32
|
+
.octicon-alignment-align:before { content: '\f08a'} /* */
|
33
|
+
.octicon-alignment-aligned-to:before { content: '\f08e'} /* */
|
34
|
+
.octicon-alignment-unalign:before { content: '\f08b'} /* */
|
35
|
+
.octicon-arrow-down:before { content: '\f03f'} /* */
|
36
|
+
.octicon-arrow-left:before { content: '\f040'} /* */
|
37
|
+
.octicon-arrow-right:before { content: '\f03e'} /* */
|
38
|
+
.octicon-arrow-small-down:before { content: '\f0a0'} /* */
|
39
|
+
.octicon-arrow-small-left:before { content: '\f0a1'} /* */
|
40
|
+
.octicon-arrow-small-right:before { content: '\f071'} /* */
|
41
|
+
.octicon-arrow-small-up:before { content: '\f09f'} /* */
|
42
|
+
.octicon-arrow-up:before { content: '\f03d'} /* */
|
43
|
+
.octicon-beer:before { content: '\f069'} /* */
|
44
|
+
.octicon-book:before { content: '\f007'} /* */
|
45
|
+
.octicon-bookmark:before { content: '\f07b'} /* */
|
46
|
+
.octicon-briefcase:before { content: '\f0d3'} /* */
|
47
|
+
.octicon-broadcast:before { content: '\f048'} /* */
|
48
|
+
.octicon-browser:before { content: '\f0c5'} /* */
|
49
|
+
.octicon-bug:before { content: '\f091'} /* */
|
50
|
+
.octicon-calendar:before { content: '\f068'} /* */
|
51
|
+
.octicon-check:before { content: '\f03a'} /* */
|
52
|
+
.octicon-checklist:before { content: '\f076'} /* */
|
53
|
+
.octicon-chevron-down:before { content: '\f0a3'} /* */
|
54
|
+
.octicon-chevron-left:before { content: '\f0a4'} /* */
|
55
|
+
.octicon-chevron-right:before { content: '\f078'} /* */
|
56
|
+
.octicon-chevron-up:before { content: '\f0a2'} /* */
|
57
|
+
.octicon-circle-slash:before { content: '\f084'} /* */
|
58
|
+
.octicon-circuit-board:before { content: '\f0d6'} /* */
|
59
|
+
.octicon-clippy:before { content: '\f035'} /* */
|
60
|
+
.octicon-clock:before { content: '\f046'} /* */
|
61
|
+
.octicon-cloud-download:before { content: '\f00b'} /* */
|
62
|
+
.octicon-cloud-upload:before { content: '\f00c'} /* */
|
63
|
+
.octicon-code:before { content: '\f05f'} /* */
|
64
|
+
.octicon-color-mode:before { content: '\f065'} /* */
|
65
|
+
.octicon-comment-add:before,
|
66
|
+
.octicon-comment:before { content: '\f02b'} /* */
|
67
|
+
.octicon-comment-discussion:before { content: '\f04f'} /* */
|
68
|
+
.octicon-credit-card:before { content: '\f045'} /* */
|
69
|
+
.octicon-dash:before { content: '\f0ca'} /* */
|
70
|
+
.octicon-dashboard:before { content: '\f07d'} /* */
|
71
|
+
.octicon-database:before { content: '\f096'} /* */
|
72
|
+
.octicon-device-camera:before { content: '\f056'} /* */
|
73
|
+
.octicon-device-camera-video:before { content: '\f057'} /* */
|
74
|
+
.octicon-device-desktop:before { content: '\f27c'} /* */
|
75
|
+
.octicon-device-mobile:before { content: '\f038'} /* */
|
76
|
+
.octicon-diff:before { content: '\f04d'} /* */
|
77
|
+
.octicon-diff-added:before { content: '\f06b'} /* */
|
78
|
+
.octicon-diff-ignored:before { content: '\f099'} /* */
|
79
|
+
.octicon-diff-modified:before { content: '\f06d'} /* */
|
80
|
+
.octicon-diff-removed:before { content: '\f06c'} /* */
|
81
|
+
.octicon-diff-renamed:before { content: '\f06e'} /* */
|
82
|
+
.octicon-ellipsis:before { content: '\f09a'} /* */
|
83
|
+
.octicon-eye-unwatch:before,
|
84
|
+
.octicon-eye-watch:before,
|
85
|
+
.octicon-eye:before { content: '\f04e'} /* */
|
86
|
+
.octicon-file-binary:before { content: '\f094'} /* */
|
87
|
+
.octicon-file-code:before { content: '\f010'} /* */
|
88
|
+
.octicon-file-directory:before { content: '\f016'} /* */
|
89
|
+
.octicon-file-media:before { content: '\f012'} /* */
|
90
|
+
.octicon-file-pdf:before { content: '\f014'} /* */
|
91
|
+
.octicon-file-submodule:before { content: '\f017'} /* */
|
92
|
+
.octicon-file-symlink-directory:before { content: '\f0b1'} /* */
|
93
|
+
.octicon-file-symlink-file:before { content: '\f0b0'} /* */
|
94
|
+
.octicon-file-text:before { content: '\f011'} /* */
|
95
|
+
.octicon-file-zip:before { content: '\f013'} /* */
|
96
|
+
.octicon-flame:before { content: '\f0d2'} /* */
|
97
|
+
.octicon-fold:before { content: '\f0cc'} /* */
|
98
|
+
.octicon-gear:before { content: '\f02f'} /* */
|
99
|
+
.octicon-gift:before { content: '\f042'} /* */
|
100
|
+
.octicon-gist:before { content: '\f00e'} /* */
|
101
|
+
.octicon-gist-secret:before { content: '\f08c'} /* */
|
102
|
+
.octicon-git-branch-create:before,
|
103
|
+
.octicon-git-branch-delete:before,
|
104
|
+
.octicon-git-branch:before { content: '\f020'} /* */
|
105
|
+
.octicon-git-commit:before { content: '\f01f'} /* */
|
106
|
+
.octicon-git-compare:before { content: '\f0ac'} /* */
|
107
|
+
.octicon-git-merge:before { content: '\f023'} /* */
|
108
|
+
.octicon-git-pull-request-abandoned:before,
|
109
|
+
.octicon-git-pull-request:before { content: '\f009'} /* */
|
110
|
+
.octicon-globe:before { content: '\f0b6'} /* */
|
111
|
+
.octicon-graph:before { content: '\f043'} /* */
|
112
|
+
.octicon-heart:before { content: '\2665'} /* ♥ */
|
113
|
+
.octicon-history:before { content: '\f07e'} /* */
|
114
|
+
.octicon-home:before { content: '\f08d'} /* */
|
115
|
+
.octicon-horizontal-rule:before { content: '\f070'} /* */
|
116
|
+
.octicon-hourglass:before { content: '\f09e'} /* */
|
117
|
+
.octicon-hubot:before { content: '\f09d'} /* */
|
118
|
+
.octicon-inbox:before { content: '\f0cf'} /* */
|
119
|
+
.octicon-info:before { content: '\f059'} /* */
|
120
|
+
.octicon-issue-closed:before { content: '\f028'} /* */
|
121
|
+
.octicon-issue-opened:before { content: '\f026'} /* */
|
122
|
+
.octicon-issue-reopened:before { content: '\f027'} /* */
|
123
|
+
.octicon-jersey:before { content: '\f019'} /* */
|
124
|
+
.octicon-jump-down:before { content: '\f072'} /* */
|
125
|
+
.octicon-jump-left:before { content: '\f0a5'} /* */
|
126
|
+
.octicon-jump-right:before { content: '\f0a6'} /* */
|
127
|
+
.octicon-jump-up:before { content: '\f073'} /* */
|
128
|
+
.octicon-key:before { content: '\f049'} /* */
|
129
|
+
.octicon-keyboard:before { content: '\f00d'} /* */
|
130
|
+
.octicon-law:before { content: '\f0d8'} /* */
|
131
|
+
.octicon-light-bulb:before { content: '\f000'} /* */
|
132
|
+
.octicon-link:before { content: '\f05c'} /* */
|
133
|
+
.octicon-link-external:before { content: '\f07f'} /* */
|
134
|
+
.octicon-list-ordered:before { content: '\f062'} /* */
|
135
|
+
.octicon-list-unordered:before { content: '\f061'} /* */
|
136
|
+
.octicon-location:before { content: '\f060'} /* */
|
137
|
+
.octicon-gist-private:before,
|
138
|
+
.octicon-mirror-private:before,
|
139
|
+
.octicon-git-fork-private:before,
|
140
|
+
.octicon-lock:before { content: '\f06a'} /* */
|
141
|
+
.octicon-logo-github:before { content: '\f092'} /* */
|
142
|
+
.octicon-mail:before { content: '\f03b'} /* */
|
143
|
+
.octicon-mail-read:before { content: '\f03c'} /* */
|
144
|
+
.octicon-mail-reply:before { content: '\f051'} /* */
|
145
|
+
.octicon-mark-github:before { content: '\f00a'} /* */
|
146
|
+
.octicon-markdown:before { content: '\f0c9'} /* */
|
147
|
+
.octicon-megaphone:before { content: '\f077'} /* */
|
148
|
+
.octicon-mention:before { content: '\f0be'} /* */
|
149
|
+
.octicon-microscope:before { content: '\f089'} /* */
|
150
|
+
.octicon-milestone:before { content: '\f075'} /* */
|
151
|
+
.octicon-mirror-public:before,
|
152
|
+
.octicon-mirror:before { content: '\f024'} /* */
|
153
|
+
.octicon-mortar-board:before { content: '\f0d7'} /* */
|
154
|
+
.octicon-move-down:before { content: '\f0a8'} /* */
|
155
|
+
.octicon-move-left:before { content: '\f074'} /* */
|
156
|
+
.octicon-move-right:before { content: '\f0a9'} /* */
|
157
|
+
.octicon-move-up:before { content: '\f0a7'} /* */
|
158
|
+
.octicon-mute:before { content: '\f080'} /* */
|
159
|
+
.octicon-no-newline:before { content: '\f09c'} /* */
|
160
|
+
.octicon-octoface:before { content: '\f008'} /* */
|
161
|
+
.octicon-organization:before { content: '\f037'} /* */
|
162
|
+
.octicon-package:before { content: '\f0c4'} /* */
|
163
|
+
.octicon-paintcan:before { content: '\f0d1'} /* */
|
164
|
+
.octicon-pencil:before { content: '\f058'} /* */
|
165
|
+
.octicon-person-add:before,
|
166
|
+
.octicon-person-follow:before,
|
167
|
+
.octicon-person:before { content: '\f018'} /* */
|
168
|
+
.octicon-pin:before { content: '\f041'} /* */
|
169
|
+
.octicon-playback-fast-forward:before { content: '\f0bd'} /* */
|
170
|
+
.octicon-playback-pause:before { content: '\f0bb'} /* */
|
171
|
+
.octicon-playback-play:before { content: '\f0bf'} /* */
|
172
|
+
.octicon-playback-rewind:before { content: '\f0bc'} /* */
|
173
|
+
.octicon-plug:before { content: '\f0d4'} /* */
|
174
|
+
.octicon-repo-create:before,
|
175
|
+
.octicon-gist-new:before,
|
176
|
+
.octicon-file-directory-create:before,
|
177
|
+
.octicon-file-add:before,
|
178
|
+
.octicon-plus:before { content: '\f05d'} /* */
|
179
|
+
.octicon-podium:before { content: '\f0af'} /* */
|
180
|
+
.octicon-primitive-dot:before { content: '\f052'} /* */
|
181
|
+
.octicon-primitive-square:before { content: '\f053'} /* */
|
182
|
+
.octicon-pulse:before { content: '\f085'} /* */
|
183
|
+
.octicon-puzzle:before { content: '\f0c0'} /* */
|
184
|
+
.octicon-question:before { content: '\f02c'} /* */
|
185
|
+
.octicon-quote:before { content: '\f063'} /* */
|
186
|
+
.octicon-radio-tower:before { content: '\f030'} /* */
|
187
|
+
.octicon-repo-delete:before,
|
188
|
+
.octicon-repo:before { content: '\f001'} /* */
|
189
|
+
.octicon-repo-clone:before { content: '\f04c'} /* */
|
190
|
+
.octicon-repo-force-push:before { content: '\f04a'} /* */
|
191
|
+
.octicon-gist-fork:before,
|
192
|
+
.octicon-repo-forked:before { content: '\f002'} /* */
|
193
|
+
.octicon-repo-pull:before { content: '\f006'} /* */
|
194
|
+
.octicon-repo-push:before { content: '\f005'} /* */
|
195
|
+
.octicon-rocket:before { content: '\f033'} /* */
|
196
|
+
.octicon-rss:before { content: '\f034'} /* */
|
197
|
+
.octicon-ruby:before { content: '\f047'} /* */
|
198
|
+
.octicon-screen-full:before { content: '\f066'} /* */
|
199
|
+
.octicon-screen-normal:before { content: '\f067'} /* */
|
200
|
+
.octicon-search-save:before,
|
201
|
+
.octicon-search:before { content: '\f02e'} /* */
|
202
|
+
.octicon-server:before { content: '\f097'} /* */
|
203
|
+
.octicon-settings:before { content: '\f07c'} /* */
|
204
|
+
.octicon-log-in:before,
|
205
|
+
.octicon-sign-in:before { content: '\f036'} /* */
|
206
|
+
.octicon-log-out:before,
|
207
|
+
.octicon-sign-out:before { content: '\f032'} /* */
|
208
|
+
.octicon-split:before { content: '\f0c6'} /* */
|
209
|
+
.octicon-squirrel:before { content: '\f0b2'} /* */
|
210
|
+
.octicon-star-add:before,
|
211
|
+
.octicon-star-delete:before,
|
212
|
+
.octicon-star:before { content: '\f02a'} /* */
|
213
|
+
.octicon-steps:before { content: '\f0c7'} /* */
|
214
|
+
.octicon-stop:before { content: '\f08f'} /* */
|
215
|
+
.octicon-repo-sync:before,
|
216
|
+
.octicon-sync:before { content: '\f087'} /* */
|
217
|
+
.octicon-tag-remove:before,
|
218
|
+
.octicon-tag-add:before,
|
219
|
+
.octicon-tag:before { content: '\f015'} /* */
|
220
|
+
.octicon-telescope:before { content: '\f088'} /* */
|
221
|
+
.octicon-terminal:before { content: '\f0c8'} /* */
|
222
|
+
.octicon-three-bars:before { content: '\f05e'} /* */
|
223
|
+
.octicon-thumbsdown:before { content: '\f0db'} /* */
|
224
|
+
.octicon-thumbsup:before { content: '\f0da'} /* */
|
225
|
+
.octicon-tools:before { content: '\f031'} /* */
|
226
|
+
.octicon-trashcan:before { content: '\f0d0'} /* */
|
227
|
+
.octicon-triangle-down:before { content: '\f05b'} /* */
|
228
|
+
.octicon-triangle-left:before { content: '\f044'} /* */
|
229
|
+
.octicon-triangle-right:before { content: '\f05a'} /* */
|
230
|
+
.octicon-triangle-up:before { content: '\f0aa'} /* */
|
231
|
+
.octicon-unfold:before { content: '\f039'} /* */
|
232
|
+
.octicon-unmute:before { content: '\f0ba'} /* */
|
233
|
+
.octicon-versions:before { content: '\f064'} /* */
|
234
|
+
.octicon-remove-close:before,
|
235
|
+
.octicon-x:before { content: '\f081'} /* */
|
236
|
+
.octicon-zap:before { content: '\26A1'} /* ⚡ */
|
Binary file
|
@@ -0,0 +1,235 @@
|
|
1
|
+
@octicons-font-path: ".";
|
2
|
+
@octicons-version: "675c3211eac589bbda193fdb306ce567a2c4569f";
|
3
|
+
|
4
|
+
@font-face {
|
5
|
+
font-family: 'octicons';
|
6
|
+
src: ~"url('@{octicons-font-path}/octicons.eot?#iefix&v=@{octicons-version}') format('embedded-opentype')",
|
7
|
+
~"url('@{octicons-font-path}/octicons.woff?v=@{octicons-version}') format('woff')",
|
8
|
+
~"url('@{octicons-font-path}/octicons.ttf?v=@{octicons-version}') format('truetype')",
|
9
|
+
~"url('@{octicons-font-path}/octicons.svg?v=@{octicons-version}#octicons') format('svg')";
|
10
|
+
font-weight: normal;
|
11
|
+
font-style: normal;
|
12
|
+
}
|
13
|
+
|
14
|
+
// .octicon is optimized for 16px.
|
15
|
+
// .mega-octicon is optimized for 32px but can be used larger.
|
16
|
+
.octicon, .mega-octicon {
|
17
|
+
font: normal normal normal 16px/1 octicons;
|
18
|
+
display: inline-block;
|
19
|
+
text-decoration: none;
|
20
|
+
text-rendering: auto;
|
21
|
+
-webkit-font-smoothing: antialiased;
|
22
|
+
-moz-osx-font-smoothing: grayscale;
|
23
|
+
-webkit-user-select: none;
|
24
|
+
-moz-user-select: none;
|
25
|
+
-ms-user-select: none;
|
26
|
+
user-select: none;
|
27
|
+
}
|
28
|
+
.mega-octicon { font-size: 32px; }
|
29
|
+
|
30
|
+
.octicon-alert:before { content: '\f02d'} /* */
|
31
|
+
.octicon-alignment-align:before { content: '\f08a'} /* */
|
32
|
+
.octicon-alignment-aligned-to:before { content: '\f08e'} /* */
|
33
|
+
.octicon-alignment-unalign:before { content: '\f08b'} /* */
|
34
|
+
.octicon-arrow-down:before { content: '\f03f'} /* */
|
35
|
+
.octicon-arrow-left:before { content: '\f040'} /* */
|
36
|
+
.octicon-arrow-right:before { content: '\f03e'} /* */
|
37
|
+
.octicon-arrow-small-down:before { content: '\f0a0'} /* */
|
38
|
+
.octicon-arrow-small-left:before { content: '\f0a1'} /* */
|
39
|
+
.octicon-arrow-small-right:before { content: '\f071'} /* */
|
40
|
+
.octicon-arrow-small-up:before { content: '\f09f'} /* */
|
41
|
+
.octicon-arrow-up:before { content: '\f03d'} /* */
|
42
|
+
.octicon-beer:before { content: '\f069'} /* */
|
43
|
+
.octicon-book:before { content: '\f007'} /* */
|
44
|
+
.octicon-bookmark:before { content: '\f07b'} /* */
|
45
|
+
.octicon-briefcase:before { content: '\f0d3'} /* */
|
46
|
+
.octicon-broadcast:before { content: '\f048'} /* */
|
47
|
+
.octicon-browser:before { content: '\f0c5'} /* */
|
48
|
+
.octicon-bug:before { content: '\f091'} /* */
|
49
|
+
.octicon-calendar:before { content: '\f068'} /* */
|
50
|
+
.octicon-check:before { content: '\f03a'} /* */
|
51
|
+
.octicon-checklist:before { content: '\f076'} /* */
|
52
|
+
.octicon-chevron-down:before { content: '\f0a3'} /* */
|
53
|
+
.octicon-chevron-left:before { content: '\f0a4'} /* */
|
54
|
+
.octicon-chevron-right:before { content: '\f078'} /* */
|
55
|
+
.octicon-chevron-up:before { content: '\f0a2'} /* */
|
56
|
+
.octicon-circle-slash:before { content: '\f084'} /* */
|
57
|
+
.octicon-circuit-board:before { content: '\f0d6'} /* */
|
58
|
+
.octicon-clippy:before { content: '\f035'} /* */
|
59
|
+
.octicon-clock:before { content: '\f046'} /* */
|
60
|
+
.octicon-cloud-download:before { content: '\f00b'} /* */
|
61
|
+
.octicon-cloud-upload:before { content: '\f00c'} /* */
|
62
|
+
.octicon-code:before { content: '\f05f'} /* */
|
63
|
+
.octicon-color-mode:before { content: '\f065'} /* */
|
64
|
+
.octicon-comment-add:before,
|
65
|
+
.octicon-comment:before { content: '\f02b'} /* */
|
66
|
+
.octicon-comment-discussion:before { content: '\f04f'} /* */
|
67
|
+
.octicon-credit-card:before { content: '\f045'} /* */
|
68
|
+
.octicon-dash:before { content: '\f0ca'} /* */
|
69
|
+
.octicon-dashboard:before { content: '\f07d'} /* */
|
70
|
+
.octicon-database:before { content: '\f096'} /* */
|
71
|
+
.octicon-device-camera:before { content: '\f056'} /* */
|
72
|
+
.octicon-device-camera-video:before { content: '\f057'} /* */
|
73
|
+
.octicon-device-desktop:before { content: '\f27c'} /* */
|
74
|
+
.octicon-device-mobile:before { content: '\f038'} /* */
|
75
|
+
.octicon-diff:before { content: '\f04d'} /* */
|
76
|
+
.octicon-diff-added:before { content: '\f06b'} /* */
|
77
|
+
.octicon-diff-ignored:before { content: '\f099'} /* */
|
78
|
+
.octicon-diff-modified:before { content: '\f06d'} /* */
|
79
|
+
.octicon-diff-removed:before { content: '\f06c'} /* */
|
80
|
+
.octicon-diff-renamed:before { content: '\f06e'} /* */
|
81
|
+
.octicon-ellipsis:before { content: '\f09a'} /* */
|
82
|
+
.octicon-eye-unwatch:before,
|
83
|
+
.octicon-eye-watch:before,
|
84
|
+
.octicon-eye:before { content: '\f04e'} /* */
|
85
|
+
.octicon-file-binary:before { content: '\f094'} /* */
|
86
|
+
.octicon-file-code:before { content: '\f010'} /* */
|
87
|
+
.octicon-file-directory:before { content: '\f016'} /* */
|
88
|
+
.octicon-file-media:before { content: '\f012'} /* */
|
89
|
+
.octicon-file-pdf:before { content: '\f014'} /* */
|
90
|
+
.octicon-file-submodule:before { content: '\f017'} /* */
|
91
|
+
.octicon-file-symlink-directory:before { content: '\f0b1'} /* */
|
92
|
+
.octicon-file-symlink-file:before { content: '\f0b0'} /* */
|
93
|
+
.octicon-file-text:before { content: '\f011'} /* */
|
94
|
+
.octicon-file-zip:before { content: '\f013'} /* */
|
95
|
+
.octicon-flame:before { content: '\f0d2'} /* */
|
96
|
+
.octicon-fold:before { content: '\f0cc'} /* */
|
97
|
+
.octicon-gear:before { content: '\f02f'} /* */
|
98
|
+
.octicon-gift:before { content: '\f042'} /* */
|
99
|
+
.octicon-gist:before { content: '\f00e'} /* */
|
100
|
+
.octicon-gist-secret:before { content: '\f08c'} /* */
|
101
|
+
.octicon-git-branch-create:before,
|
102
|
+
.octicon-git-branch-delete:before,
|
103
|
+
.octicon-git-branch:before { content: '\f020'} /* */
|
104
|
+
.octicon-git-commit:before { content: '\f01f'} /* */
|
105
|
+
.octicon-git-compare:before { content: '\f0ac'} /* */
|
106
|
+
.octicon-git-merge:before { content: '\f023'} /* */
|
107
|
+
.octicon-git-pull-request-abandoned:before,
|
108
|
+
.octicon-git-pull-request:before { content: '\f009'} /* */
|
109
|
+
.octicon-globe:before { content: '\f0b6'} /* */
|
110
|
+
.octicon-graph:before { content: '\f043'} /* */
|
111
|
+
.octicon-heart:before { content: '\2665'} /* ♥ */
|
112
|
+
.octicon-history:before { content: '\f07e'} /* */
|
113
|
+
.octicon-home:before { content: '\f08d'} /* */
|
114
|
+
.octicon-horizontal-rule:before { content: '\f070'} /* */
|
115
|
+
.octicon-hourglass:before { content: '\f09e'} /* */
|
116
|
+
.octicon-hubot:before { content: '\f09d'} /* */
|
117
|
+
.octicon-inbox:before { content: '\f0cf'} /* */
|
118
|
+
.octicon-info:before { content: '\f059'} /* */
|
119
|
+
.octicon-issue-closed:before { content: '\f028'} /* */
|
120
|
+
.octicon-issue-opened:before { content: '\f026'} /* */
|
121
|
+
.octicon-issue-reopened:before { content: '\f027'} /* */
|
122
|
+
.octicon-jersey:before { content: '\f019'} /* */
|
123
|
+
.octicon-jump-down:before { content: '\f072'} /* */
|
124
|
+
.octicon-jump-left:before { content: '\f0a5'} /* */
|
125
|
+
.octicon-jump-right:before { content: '\f0a6'} /* */
|
126
|
+
.octicon-jump-up:before { content: '\f073'} /* */
|
127
|
+
.octicon-key:before { content: '\f049'} /* */
|
128
|
+
.octicon-keyboard:before { content: '\f00d'} /* */
|
129
|
+
.octicon-law:before { content: '\f0d8'} /* */
|
130
|
+
.octicon-light-bulb:before { content: '\f000'} /* */
|
131
|
+
.octicon-link:before { content: '\f05c'} /* */
|
132
|
+
.octicon-link-external:before { content: '\f07f'} /* */
|
133
|
+
.octicon-list-ordered:before { content: '\f062'} /* */
|
134
|
+
.octicon-list-unordered:before { content: '\f061'} /* */
|
135
|
+
.octicon-location:before { content: '\f060'} /* */
|
136
|
+
.octicon-gist-private:before,
|
137
|
+
.octicon-mirror-private:before,
|
138
|
+
.octicon-git-fork-private:before,
|
139
|
+
.octicon-lock:before { content: '\f06a'} /* */
|
140
|
+
.octicon-logo-github:before { content: '\f092'} /* */
|
141
|
+
.octicon-mail:before { content: '\f03b'} /* */
|
142
|
+
.octicon-mail-read:before { content: '\f03c'} /* */
|
143
|
+
.octicon-mail-reply:before { content: '\f051'} /* */
|
144
|
+
.octicon-mark-github:before { content: '\f00a'} /* */
|
145
|
+
.octicon-markdown:before { content: '\f0c9'} /* */
|
146
|
+
.octicon-megaphone:before { content: '\f077'} /* */
|
147
|
+
.octicon-mention:before { content: '\f0be'} /* */
|
148
|
+
.octicon-microscope:before { content: '\f089'} /* */
|
149
|
+
.octicon-milestone:before { content: '\f075'} /* */
|
150
|
+
.octicon-mirror-public:before,
|
151
|
+
.octicon-mirror:before { content: '\f024'} /* */
|
152
|
+
.octicon-mortar-board:before { content: '\f0d7'} /* */
|
153
|
+
.octicon-move-down:before { content: '\f0a8'} /* */
|
154
|
+
.octicon-move-left:before { content: '\f074'} /* */
|
155
|
+
.octicon-move-right:before { content: '\f0a9'} /* */
|
156
|
+
.octicon-move-up:before { content: '\f0a7'} /* */
|
157
|
+
.octicon-mute:before { content: '\f080'} /* */
|
158
|
+
.octicon-no-newline:before { content: '\f09c'} /* */
|
159
|
+
.octicon-octoface:before { content: '\f008'} /* */
|
160
|
+
.octicon-organization:before { content: '\f037'} /* */
|
161
|
+
.octicon-package:before { content: '\f0c4'} /* */
|
162
|
+
.octicon-paintcan:before { content: '\f0d1'} /* */
|
163
|
+
.octicon-pencil:before { content: '\f058'} /* */
|
164
|
+
.octicon-person-add:before,
|
165
|
+
.octicon-person-follow:before,
|
166
|
+
.octicon-person:before { content: '\f018'} /* */
|
167
|
+
.octicon-pin:before { content: '\f041'} /* */
|
168
|
+
.octicon-playback-fast-forward:before { content: '\f0bd'} /* */
|
169
|
+
.octicon-playback-pause:before { content: '\f0bb'} /* */
|
170
|
+
.octicon-playback-play:before { content: '\f0bf'} /* */
|
171
|
+
.octicon-playback-rewind:before { content: '\f0bc'} /* */
|
172
|
+
.octicon-plug:before { content: '\f0d4'} /* */
|
173
|
+
.octicon-repo-create:before,
|
174
|
+
.octicon-gist-new:before,
|
175
|
+
.octicon-file-directory-create:before,
|
176
|
+
.octicon-file-add:before,
|
177
|
+
.octicon-plus:before { content: '\f05d'} /* */
|
178
|
+
.octicon-podium:before { content: '\f0af'} /* */
|
179
|
+
.octicon-primitive-dot:before { content: '\f052'} /* */
|
180
|
+
.octicon-primitive-square:before { content: '\f053'} /* */
|
181
|
+
.octicon-pulse:before { content: '\f085'} /* */
|
182
|
+
.octicon-puzzle:before { content: '\f0c0'} /* */
|
183
|
+
.octicon-question:before { content: '\f02c'} /* */
|
184
|
+
.octicon-quote:before { content: '\f063'} /* */
|
185
|
+
.octicon-radio-tower:before { content: '\f030'} /* */
|
186
|
+
.octicon-repo-delete:before,
|
187
|
+
.octicon-repo:before { content: '\f001'} /* */
|
188
|
+
.octicon-repo-clone:before { content: '\f04c'} /* */
|
189
|
+
.octicon-repo-force-push:before { content: '\f04a'} /* */
|
190
|
+
.octicon-gist-fork:before,
|
191
|
+
.octicon-repo-forked:before { content: '\f002'} /* */
|
192
|
+
.octicon-repo-pull:before { content: '\f006'} /* */
|
193
|
+
.octicon-repo-push:before { content: '\f005'} /* */
|
194
|
+
.octicon-rocket:before { content: '\f033'} /* */
|
195
|
+
.octicon-rss:before { content: '\f034'} /* */
|
196
|
+
.octicon-ruby:before { content: '\f047'} /* */
|
197
|
+
.octicon-screen-full:before { content: '\f066'} /* */
|
198
|
+
.octicon-screen-normal:before { content: '\f067'} /* */
|
199
|
+
.octicon-search-save:before,
|
200
|
+
.octicon-search:before { content: '\f02e'} /* */
|
201
|
+
.octicon-server:before { content: '\f097'} /* */
|
202
|
+
.octicon-settings:before { content: '\f07c'} /* */
|
203
|
+
.octicon-log-in:before,
|
204
|
+
.octicon-sign-in:before { content: '\f036'} /* */
|
205
|
+
.octicon-log-out:before,
|
206
|
+
.octicon-sign-out:before { content: '\f032'} /* */
|
207
|
+
.octicon-split:before { content: '\f0c6'} /* */
|
208
|
+
.octicon-squirrel:before { content: '\f0b2'} /* */
|
209
|
+
.octicon-star-add:before,
|
210
|
+
.octicon-star-delete:before,
|
211
|
+
.octicon-star:before { content: '\f02a'} /* */
|
212
|
+
.octicon-steps:before { content: '\f0c7'} /* */
|
213
|
+
.octicon-stop:before { content: '\f08f'} /* */
|
214
|
+
.octicon-repo-sync:before,
|
215
|
+
.octicon-sync:before { content: '\f087'} /* */
|
216
|
+
.octicon-tag-remove:before,
|
217
|
+
.octicon-tag-add:before,
|
218
|
+
.octicon-tag:before { content: '\f015'} /* */
|
219
|
+
.octicon-telescope:before { content: '\f088'} /* */
|
220
|
+
.octicon-terminal:before { content: '\f0c8'} /* */
|
221
|
+
.octicon-three-bars:before { content: '\f05e'} /* */
|
222
|
+
.octicon-thumbsdown:before { content: '\f0db'} /* */
|
223
|
+
.octicon-thumbsup:before { content: '\f0da'} /* */
|
224
|
+
.octicon-tools:before { content: '\f031'} /* */
|
225
|
+
.octicon-trashcan:before { content: '\f0d0'} /* */
|
226
|
+
.octicon-triangle-down:before { content: '\f05b'} /* */
|
227
|
+
.octicon-triangle-left:before { content: '\f044'} /* */
|
228
|
+
.octicon-triangle-right:before { content: '\f05a'} /* */
|
229
|
+
.octicon-triangle-up:before { content: '\f0aa'} /* */
|
230
|
+
.octicon-unfold:before { content: '\f039'} /* */
|
231
|
+
.octicon-unmute:before { content: '\f0ba'} /* */
|
232
|
+
.octicon-versions:before { content: '\f064'} /* */
|
233
|
+
.octicon-remove-close:before,
|
234
|
+
.octicon-x:before { content: '\f081'} /* */
|
235
|
+
.octicon-zap:before { content: '\26A1'} /* ⚡ */
|