Merge pull request #471 from travis-ci/lp-db-rows
Dashboard styles and cleanup
|
@ -5,10 +5,11 @@ import config from 'travis/config/environment';
|
|||
export default Ember.Component.extend({
|
||||
tagName: 'li',
|
||||
classNameBindings: ['repo.default_branch.last_build.state'],
|
||||
classNames: ['dashboard-row', 'row-li'],
|
||||
classNames: ['rows', 'rows--dashboard'],
|
||||
isLoading: false,
|
||||
isTriggering: false,
|
||||
hasTriggered: false,
|
||||
dropupIsOpen: false,
|
||||
|
||||
urlGithubCommit: function() {
|
||||
return githubCommitUrl(this.get('repo.slug'), this.get('repo.default_branch.last_build.commit.sha'));
|
||||
|
@ -18,6 +19,9 @@ export default Ember.Component.extend({
|
|||
tiggerBuild(branch) {
|
||||
this.set('isTriggering', true);
|
||||
return this.triggerBuild();
|
||||
},
|
||||
openDropup() {
|
||||
this.toggleProperty('dropupIsOpen');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
8
app/components/lastbuild-tile.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
|
||||
tagName: 'li',
|
||||
classNameBindings: ['build.state']
|
||||
|
||||
});
|
|
@ -2,7 +2,7 @@ import Ember from 'ember';
|
|||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'span',
|
||||
classNames: ['status-icon', 'icon'],
|
||||
classNames: ['request-icon', 'icon'],
|
||||
classNameBindings: ['event', 'state'],
|
||||
|
||||
isPush: function() {
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
@import "app/legacy/_grid";
|
||||
|
||||
@import "app/vars";
|
||||
@import "app/data";
|
||||
@import "app/mixins";
|
||||
@import "app/base";
|
||||
@import "app/userlike";
|
||||
|
@ -26,11 +27,11 @@
|
|||
@import "app/modules/build-header";
|
||||
@import "app/modules/avatar";
|
||||
@import "app/modules/popup";
|
||||
|
||||
@import "app/components/sync-button";
|
||||
@import "app/components/loading-indicator";
|
||||
@import "app/components/build-tile";
|
||||
@import "app/components/status-icon";
|
||||
@import "app/modules/lastbuild";
|
||||
@import "app/modules/sync-button";
|
||||
@import "app/modules/loading-indicator";
|
||||
@import "app/modules/build-tile";
|
||||
@import "app/modules/status-icon";
|
||||
|
||||
@import "app/animation/tractor";
|
||||
|
||||
|
|
|
@ -18,6 +18,9 @@ body
|
|||
line-height: 1.45
|
||||
font-family: $font-family-sans-serif
|
||||
|
||||
h1, h2, h3, h4, h5, h6
|
||||
font-weight: $font-weight-normal
|
||||
|
||||
img
|
||||
max-width: 100%
|
||||
height: auto
|
||||
|
@ -63,9 +66,8 @@ a
|
|||
text-decoration: underline
|
||||
|
||||
.small-title
|
||||
font-size: 20px
|
||||
font-size: 18px
|
||||
color: $oxide-blue
|
||||
font-weight: 400
|
||||
|
||||
.blank-list
|
||||
@include resetul
|
||||
|
|
38
app/styles/app/data.scss
Normal file
|
@ -0,0 +1,38 @@
|
|||
$stateMap: (
|
||||
passed: (
|
||||
color: $turf-green,
|
||||
color-bg: $seed-green
|
||||
),
|
||||
failed: (
|
||||
color: $brick-red,
|
||||
color-bg: $quartz-red
|
||||
),
|
||||
errored: (
|
||||
color: $brick-red,
|
||||
color-bg: $quartz-red
|
||||
),
|
||||
canceled: (
|
||||
color: $cement-grey,
|
||||
color-bg: $pebble-grey
|
||||
),
|
||||
created: (
|
||||
color: $canary-yellow,
|
||||
color-bg: $dozer-yellow
|
||||
),
|
||||
started: (
|
||||
color: $canary-yellow,
|
||||
color-bg: $dozer-yellow
|
||||
),
|
||||
booting: (
|
||||
color: $canary-yellow,
|
||||
color-bg: $dozer-yellow
|
||||
),
|
||||
queued: (
|
||||
color: $canary-yellow,
|
||||
color-bg: $dozer-yellow
|
||||
),
|
||||
received: (
|
||||
color: $canary-yellow,
|
||||
color-bg: $dozer-yellow
|
||||
)
|
||||
);
|
|
@ -3,7 +3,7 @@
|
|||
height: $top-height
|
||||
width: 40px
|
||||
margin-left: 1em
|
||||
line-height: $top-height
|
||||
line-height: 2.5
|
||||
cursor: pointer
|
||||
vertical-align: middle
|
||||
@media #{$medium-up}
|
||||
|
@ -57,15 +57,14 @@
|
|||
height: auto
|
||||
|
||||
.icon-close
|
||||
@extend %icon-line-failed
|
||||
position: absolute
|
||||
bottom: 0
|
||||
right: 0
|
||||
display: inline-block
|
||||
width: 1.2em
|
||||
height: 1.2em
|
||||
background:
|
||||
image: inline-image('line-icons/icon-failed.svg')
|
||||
repeat: no-repeat
|
||||
background-repeat: no-repeat
|
||||
|
||||
@media #{$medium-up}
|
||||
position: absolute
|
||||
|
@ -94,61 +93,33 @@
|
|||
&.announcement
|
||||
background-color: $turf-green
|
||||
|
||||
|
||||
.icon-broadcast
|
||||
display: inline-block
|
||||
width: 1.3em
|
||||
height: 2em
|
||||
width: 16px
|
||||
height: 16px
|
||||
vertical-align: middle
|
||||
svg
|
||||
overflow: visible
|
||||
.tower-path
|
||||
fill: #AEAEAE
|
||||
.radio-wave--right,
|
||||
.radio-wave--left
|
||||
display: none
|
||||
.path
|
||||
stroke: $cement-grey
|
||||
fill: none
|
||||
&:hover,
|
||||
&.is-open
|
||||
.tower-path
|
||||
fill: #818181
|
||||
.path
|
||||
stroke: $asphalt-grey
|
||||
|
||||
&.warning
|
||||
.tower-path
|
||||
fill: #DB4141
|
||||
.path
|
||||
stroke: $brick-red
|
||||
&:hover,
|
||||
&.is-open
|
||||
.tower-path
|
||||
fill: #BA1717
|
||||
.path
|
||||
stroke: $brick-red
|
||||
|
||||
&.announcement
|
||||
.tower-path
|
||||
fill: #3CA85B
|
||||
.path
|
||||
stroke: $turf-green
|
||||
&:hover,
|
||||
&.is-open
|
||||
.tower-path
|
||||
fill: #238C3E
|
||||
|
||||
&.announcement,
|
||||
&.warning
|
||||
.radio-wave--right,
|
||||
.radio-wave--left
|
||||
display: block
|
||||
|
||||
.radio-wave--right
|
||||
.tower-path
|
||||
transform-origin: left center
|
||||
animation: pulsating-right 1.5s linear infinite
|
||||
|
||||
.radio-wave--left
|
||||
.tower-path
|
||||
transform-origin: right center
|
||||
animation: pulsating-left 1.5s linear infinite
|
||||
|
||||
|
||||
// @keyframes pulsating-right
|
||||
// 40%
|
||||
// transform: translateX(1px) scale(1.1)
|
||||
|
||||
//@keyframes pulsating-left
|
||||
// 40%
|
||||
// transform: translateX(-1px) scale(1.1)
|
||||
.path
|
||||
stroke: $turf-green
|
||||
|
|
|
@ -20,33 +20,25 @@
|
|||
list-style: none
|
||||
|
||||
.cache-item
|
||||
border: 1px solid $cream-dark
|
||||
border: 1px solid rgba($cement-grey, 0.2)
|
||||
margin-bottom: 5px
|
||||
font-size: 15px
|
||||
padding: 0 1em
|
||||
.status-icon
|
||||
width: 1.5em
|
||||
height: 1.5em
|
||||
vertical-align: middle
|
||||
.icon-scale
|
||||
width: 1.2em
|
||||
height: 1.2em
|
||||
vertical-align: middle
|
||||
margin-right: .3em
|
||||
&:hover,
|
||||
&:active
|
||||
background-color: #F5F5F5
|
||||
background-color: $pebble-grey
|
||||
|
||||
@media #{$medium-up}
|
||||
display: flex
|
||||
justify-content: space-between
|
||||
flex-flow: row wrap
|
||||
flex-flow: row nowrap
|
||||
align-items: center
|
||||
padding: .3em 0
|
||||
white-space: nowrap
|
||||
.row-item:first-of-type
|
||||
flex: 1 0 30%
|
||||
padding-left: 1em
|
||||
overflow: hidden
|
||||
.row-item:nth-of-type(2)
|
||||
flex: 1 0 30%
|
||||
.row-item:nth-of-type(3)
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
list-style: none
|
||||
padding: 0
|
||||
|
||||
.dashboard .centered
|
||||
@media #{$small-only}
|
||||
padding: 0 1em
|
||||
|
||||
.dashboard-header
|
||||
width: 100%
|
||||
|
@ -26,3 +29,83 @@
|
|||
padding: 2rem 0
|
||||
font-size: 20px
|
||||
color: $cement-grey
|
||||
|
||||
.dash-star
|
||||
&:hover,
|
||||
&:active
|
||||
svg path
|
||||
stroke-width: 2px
|
||||
|
||||
&.is-starred
|
||||
svg path
|
||||
stroke: $dozer-yellow
|
||||
fill: $canary-yellow
|
||||
|
||||
.dash-header
|
||||
order: 2
|
||||
flex: 0 0 20%
|
||||
|
||||
.dash-head
|
||||
flex: 0 0 2%
|
||||
display: flex
|
||||
padding: 0 1em
|
||||
margin-bottom: 1em
|
||||
justify-content: space-between
|
||||
align-items: flex-end
|
||||
@media #{$medium-up}
|
||||
flex: 0 0 3em
|
||||
display: block
|
||||
margin-bottom: 0
|
||||
height: 55px
|
||||
border-right: 1px solid rgba($asphalt-grey, .2)
|
||||
|
||||
.dash-body
|
||||
flex-grow: 1
|
||||
position: relative
|
||||
|
||||
@media #{$medium-up}
|
||||
padding: 0 1.5em 0
|
||||
|
||||
.dash-aside
|
||||
@media #{$medium-up}
|
||||
position: absolute
|
||||
width: 100%
|
||||
bottom: 0
|
||||
overflow: hidden
|
||||
|
||||
.dash-main
|
||||
@media #{$small-only}
|
||||
padding: 0 1em
|
||||
@media #{$medium-up}
|
||||
display: flex
|
||||
flex-flow: row wrap
|
||||
align-items: center
|
||||
justify-content: space-between
|
||||
height: 80px
|
||||
|
||||
.dash-default
|
||||
order: 3
|
||||
flex: 0 0 20%
|
||||
|
||||
@media #{$small-only}
|
||||
margin-top: 2em
|
||||
|
||||
.dash-menu
|
||||
order: 5
|
||||
flex: 0 0 3%
|
||||
|
||||
.dash-last-build
|
||||
display: flex
|
||||
order: 4
|
||||
flex: 0 0 55%
|
||||
flex-flow: row wrap
|
||||
justify-content: space-between
|
||||
|
||||
@media #{$small-only}
|
||||
margin-top: 2em
|
||||
@media #{$medium-up}
|
||||
align-items: center
|
||||
padding-right: 3em
|
||||
|
||||
> div
|
||||
flex: 0 0 33%
|
||||
|
|
|
@ -70,10 +70,6 @@
|
|||
&.received,
|
||||
&.created
|
||||
line-height: 3
|
||||
.icon
|
||||
width: 24px
|
||||
height: 24px
|
||||
vertical-align: middle
|
||||
|
||||
.job-number
|
||||
display: inline-block
|
||||
|
@ -81,24 +77,15 @@
|
|||
flex: 0 0 7em
|
||||
padding-right: 1em
|
||||
border-right: 1px solid $cream-dark
|
||||
.icon-hash
|
||||
width: 20px
|
||||
height: 20px
|
||||
vertical-align: middle
|
||||
@extend %icon
|
||||
@extend %icon-line-hash
|
||||
|
||||
.job-os
|
||||
position: relative
|
||||
pointer-events: none
|
||||
.icon
|
||||
width: 16px
|
||||
width: 18px
|
||||
height: 20px
|
||||
vertical-align: middle
|
||||
padding-left: 1.5em
|
||||
background:
|
||||
size: auto 18px
|
||||
repeat: no-repeat
|
||||
@media #{$medium-up}
|
||||
flex: 0 0 4em
|
||||
text-align: center
|
||||
|
@ -127,11 +114,8 @@
|
|||
@include fadeOut(right, -90deg, white)
|
||||
|
||||
.icon-lang
|
||||
width: 16px
|
||||
height: 13px
|
||||
margin-right: .3em
|
||||
vertical-align: middle
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-line-language
|
||||
|
||||
.job-env
|
||||
|
@ -149,7 +133,6 @@
|
|||
width: 14px
|
||||
height: 14px
|
||||
margin-right: .3em
|
||||
vertical-align: middle
|
||||
@extend %icon
|
||||
@extend %icon-line-environment
|
||||
|
||||
|
|
|
@ -15,10 +15,10 @@
|
|||
padding: 0.1em 0.5em 0.1em 1.5em
|
||||
cursor: pointer
|
||||
background:
|
||||
color: #777777
|
||||
color: $cement-grey
|
||||
repeat: no-repeat
|
||||
size: auto 12px
|
||||
position: 6px 4px
|
||||
position: 6px 5px
|
||||
border-radius: 2px
|
||||
color: $pebble-grey
|
||||
@extend %icon-arrow-down
|
||||
|
|
|
@ -15,10 +15,6 @@
|
|||
.owner-handle
|
||||
margin: 0
|
||||
font-size: $font-size-ml
|
||||
.icon
|
||||
width: 1.1em
|
||||
height: 1.2em
|
||||
vertical-align: middle
|
||||
a:hover
|
||||
text-decoration: underline
|
||||
img
|
||||
|
|
|
@ -133,9 +133,6 @@ p.profile-user-last
|
|||
display: inline-block
|
||||
padding: .2em .2em .2em .5em
|
||||
height: 28px
|
||||
.icon
|
||||
width: 14px
|
||||
height: 14px
|
||||
|
||||
.profile-hooklist .sync-spinner
|
||||
display: inline !important
|
||||
|
@ -219,23 +216,23 @@ p.profile-user-last
|
|||
.icon-eye
|
||||
vertical-align: middle
|
||||
path
|
||||
fill: #B6B7B9
|
||||
fill: $cement-grey
|
||||
circle
|
||||
stroke: #B6B7B9
|
||||
stroke: $cement-grey
|
||||
fill: #fff
|
||||
&:hover
|
||||
path
|
||||
fill: #666666
|
||||
fill: $asphalt-grey
|
||||
circle
|
||||
stroke: #666666
|
||||
stroke: $asphalt-grey
|
||||
fill: #fff
|
||||
&.is-visible
|
||||
.icon-eye
|
||||
circle
|
||||
fill: #B6B7B9
|
||||
fill: $cement-grey
|
||||
&:hover
|
||||
circle
|
||||
fill: #666666
|
||||
fill: $asphalt-grey
|
||||
|
||||
#unadministerable-hooks
|
||||
p
|
||||
|
|
|
@ -29,13 +29,6 @@
|
|||
font-weight: $font-weight-bold
|
||||
margin-right: .5em
|
||||
|
||||
.status-icon
|
||||
width: 1.3em
|
||||
height: 1.3em
|
||||
vertical-align: middle
|
||||
&.api
|
||||
width: 1.2em !important
|
||||
|
||||
a:hover,
|
||||
a:active
|
||||
text-decoration: underline
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
|
||||
.settings
|
||||
padding-top: .8em
|
||||
|
||||
.settings-section
|
||||
padding: 0 0 1em
|
||||
margin-bottom: 3em
|
||||
border-bottom: 2px solid #f2f3ef
|
||||
border-bottom: 2px solid $pebble-grey
|
||||
&:last-of-type
|
||||
border-bottom: none
|
||||
.small-title
|
||||
|
@ -53,10 +52,8 @@
|
|||
box-shadow: none
|
||||
|
||||
%settings-row
|
||||
border-radius: 4px
|
||||
background-color: #F6F5F5
|
||||
@media #{$medium-up}
|
||||
height: 36px
|
||||
border-radius: 2px
|
||||
background-color: $pebble-grey
|
||||
|
||||
.settings-envvar
|
||||
@extend %settings-row
|
||||
|
@ -79,10 +76,10 @@
|
|||
vertical-align: middle
|
||||
overflow: hidden
|
||||
white-space: nowrap
|
||||
color: #8e8f8e
|
||||
color: $asphalt-grey
|
||||
&:after
|
||||
content: ""
|
||||
@include fadeOut(right, -90deg, #F6F5F5)
|
||||
@include fadeOut(right, -90deg, $pebble-grey)
|
||||
|
||||
.ssh-key-name
|
||||
@extend %settings-name-section
|
||||
|
@ -104,7 +101,7 @@
|
|||
display: inline-block
|
||||
vertical-align: middle
|
||||
overflow: hidden
|
||||
color: #8e8f8e
|
||||
color: $asphalt-grey
|
||||
|
||||
.ssh-key-value
|
||||
@extend %settings-value-section
|
||||
|
@ -124,10 +121,10 @@
|
|||
display: inline-block
|
||||
width: 100%
|
||||
padding: 0.6em 0.5em 0.7em 1.1em
|
||||
border-radius: 4px
|
||||
border-radius: 2px
|
||||
border: none
|
||||
background-color: #eeedec
|
||||
color: #8e8f8e
|
||||
background-color: lighten($cement-grey, 20)
|
||||
color: $asphalt-grey
|
||||
@extend .icon-lock
|
||||
background:
|
||||
size: 14px
|
||||
|
@ -146,12 +143,6 @@
|
|||
width: 24%
|
||||
vertical-align: middle
|
||||
text-align: center
|
||||
.icon-delete
|
||||
@extend %icon
|
||||
@extend .icon-delete
|
||||
width: 1.1em
|
||||
height: 1.6em
|
||||
background-position: 0 2px
|
||||
&:hover
|
||||
.icon-delete
|
||||
@extend .icon-delete-hover
|
||||
|
@ -173,11 +164,7 @@
|
|||
.icon-delete
|
||||
margin: .2em auto 0
|
||||
.icon-delete-disabled
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend .icon-delete-disabled
|
||||
display: block
|
||||
width: 1.1em
|
||||
height: 1.4em
|
||||
margin: .2em auto 0
|
||||
|
||||
|
||||
|
|
|
@ -46,10 +46,15 @@
|
|||
width: 22%
|
||||
a:hover
|
||||
text-decoration: underline
|
||||
.icon
|
||||
width: 1.3em
|
||||
height: 1.4em
|
||||
vertical-align: middle
|
||||
|
||||
.icon-clock,
|
||||
.icon-calendar,
|
||||
.icon-hash
|
||||
width: 14px
|
||||
height: 14px
|
||||
.status-icon
|
||||
width: 12px
|
||||
height: 16px
|
||||
|
||||
.tabnav--sidebar
|
||||
font-size: 14px
|
||||
|
@ -75,7 +80,8 @@
|
|||
margin-right: 0.8em
|
||||
@media (min-width: #{lower-bound($large-range)})
|
||||
ul
|
||||
height: 2em
|
||||
height: 2em
|
||||
margin-bottom: -5px
|
||||
@media (max-width: #{lower-bound($large-range)})
|
||||
li
|
||||
display: block !important
|
||||
|
|
|
@ -36,15 +36,6 @@
|
|||
bottom: 0
|
||||
margin: auto
|
||||
|
||||
%inline-block
|
||||
display: inline-block
|
||||
|
||||
%section-title
|
||||
font-size: $font-size-sm
|
||||
color: $cement-grey
|
||||
font-weight: 400
|
||||
|
||||
|
||||
=linkStyle
|
||||
a
|
||||
text-decoration: none
|
||||
|
@ -67,9 +58,34 @@
|
|||
|
||||
// @todo simplyfiy coloring mixins
|
||||
=colorStatusIcons($color, $status)
|
||||
.status-icon.#{$status}
|
||||
.status-icon.#{$status},
|
||||
.request-icon.#{$status}
|
||||
svg *
|
||||
fill: $color
|
||||
stroke: $color
|
||||
|
||||
=rowBorder
|
||||
border: 1px solid lighten($cement-grey, 20)
|
||||
border-radius: 2px
|
||||
|
||||
=rowColor($status, $color, $color-bg: $color)
|
||||
&.#{$status}
|
||||
.color
|
||||
color: $color
|
||||
a
|
||||
color: $color
|
||||
text-decoration: none
|
||||
&:hover,
|
||||
&:active
|
||||
border-bottom: 1px solid $color
|
||||
.status-icon g > *,
|
||||
.request-icon g > *
|
||||
stroke: $color-bg
|
||||
.background
|
||||
background-color: $color-bg
|
||||
|
||||
=rowBg($width, $status, $color)
|
||||
&.#{$status}
|
||||
background: linear-gradient(to right, $color 0%, $color $width, white $width, white 100%) no-repeat
|
||||
|
||||
=statusColors($color, $status, $width, $color2: $color, $building:false)
|
||||
&.#{$status}
|
||||
|
@ -80,9 +96,9 @@
|
|||
color: $color
|
||||
&:hover
|
||||
border-color: $color
|
||||
.row-name .status-icon g > *,
|
||||
.row-request .icon-request g > *
|
||||
fill: $color
|
||||
.status-icon g > *,
|
||||
.request-icon g > *
|
||||
stroke: $color
|
||||
|
||||
.build a,
|
||||
.repo-title a
|
||||
|
|
|
@ -44,8 +44,9 @@
|
|||
|
||||
.commit-author
|
||||
.avatar
|
||||
width: 20px
|
||||
height: 20px
|
||||
width: 18px
|
||||
height: 18px
|
||||
margin-right: .3rem
|
||||
.pseudo-avatar:after
|
||||
font-size: .7em
|
||||
line-height: 1.7
|
||||
|
|
|
@ -52,14 +52,9 @@
|
|||
font-weight: $font-weight-normal
|
||||
font-size: 16px
|
||||
|
||||
.status-icon
|
||||
width: 1.7rem
|
||||
height: 1.8rem
|
||||
vertical-align: middle
|
||||
|
||||
.build-title
|
||||
.status-icon
|
||||
margin-left: -2rem
|
||||
margin-left: -1.8rem
|
||||
|
||||
.commit-info
|
||||
font-size: 15px
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
@mixin buildTileColors($color, $bg, $status, $extra-hover: $color)
|
||||
> .#{$status}
|
||||
background-color: $bg
|
||||
.icon-request g > *,
|
||||
.status-icon g > *
|
||||
fill: $color
|
||||
stroke: $color
|
||||
&:hover
|
||||
background-color: $extra-hover
|
||||
.status-icon.#{$status} g > *
|
||||
fill: white
|
||||
.status-icon g > *
|
||||
stroke: white
|
||||
.status-icon .circle
|
||||
border-color: white
|
||||
border-width: 2px
|
||||
|
@ -33,8 +32,8 @@
|
|||
right: 0
|
||||
bottom: 0
|
||||
left: 0
|
||||
width: 2.5rem !important
|
||||
height: 2.5rem !important
|
||||
width: 18px
|
||||
height: 18px
|
||||
margin: auto !important
|
||||
background-color: transparent
|
||||
transition: top 200ms ease
|
|
@ -124,8 +124,9 @@ $button-border-color: #d4d4d4
|
|||
overflow: hidden
|
||||
width: 28px
|
||||
height: 28px
|
||||
border: solid 1px #E4E6E6
|
||||
border: solid 1px rgba($cement-grey, 0.2)
|
||||
border-radius: 50%
|
||||
cursor: pointer
|
||||
&:hover
|
||||
border-color: $oxide-blue
|
||||
|
||||
|
@ -140,8 +141,9 @@ $button-border-color: #d4d4d4
|
|||
@extend %circle-button
|
||||
@extend %icon-line-cross
|
||||
background:
|
||||
position: 6px 6px
|
||||
repeat: no-repeat
|
||||
size: auto 100%
|
||||
size: 14px 14px
|
||||
&:hover
|
||||
@extend %icon-line-cross-teal
|
||||
|
||||
|
@ -149,9 +151,9 @@ $button-border-color: #d4d4d4
|
|||
@extend %circle-button
|
||||
@extend %icon-line-trigger
|
||||
background:
|
||||
position: 2px 1px
|
||||
position: 6px 5px
|
||||
repeat: no-repeat
|
||||
size: 24px 24px
|
||||
size: 16px 16px
|
||||
&:hover
|
||||
@extend %icon-line-trigger-teal
|
||||
|
||||
|
@ -213,4 +215,4 @@ $button-border-color: #d4d4d4
|
|||
position: 4px 1px
|
||||
cursor: pointer
|
||||
@extend .button--grey
|
||||
@extend %icon-line-eye
|
||||
@extend %icon-line-eye-white
|
||||
|
|
|
@ -1,20 +1,25 @@
|
|||
.option-button
|
||||
position: relative
|
||||
width: 17em
|
||||
&:hover
|
||||
.option-dropdown
|
||||
display: block
|
||||
.option-display
|
||||
color: $oxide-blue
|
||||
border-color: $oxide-blue
|
||||
.option-tofu
|
||||
@extend %icon-line-tofu-teal
|
||||
border-color: $oxide-blue
|
||||
.option-arrow
|
||||
@extend %icon-line-arrowtabs-teal
|
||||
border-color: $oxide-blue
|
||||
transform: rotate(-90deg)
|
||||
border-bottom: none
|
||||
border-top: 1px solid $oxide-blue
|
||||
@media #{$small-only}
|
||||
&.display
|
||||
.option-dropdown
|
||||
display: block
|
||||
@media #{$medium-up}
|
||||
&:hover
|
||||
.option-dropdown
|
||||
display: block
|
||||
.option-display
|
||||
color: $oxide-blue
|
||||
border-color: $oxide-blue
|
||||
.option-tofu
|
||||
border-color: $oxide-blue
|
||||
background-image: inline-image('/line-icons/icon-tofuburger-teal.svg')
|
||||
|
||||
$dropdown-button-height: 30px
|
||||
$dropdown-button-margin: -9px
|
||||
|
@ -45,19 +50,29 @@ $dropdown-button-margin: -9px
|
|||
border-radius: 50%
|
||||
overflow: hidden
|
||||
|
||||
.option-tofu
|
||||
.option-tofu,
|
||||
.option-arrow
|
||||
width: 2em
|
||||
height: 2em
|
||||
display: inline-block
|
||||
vertical-align: top
|
||||
background:
|
||||
image: inline-image('/line-icons/icon-tofuburger.svg')
|
||||
repeat: no-repeat
|
||||
size: 20px
|
||||
position: 50%
|
||||
|
||||
.option-tofu
|
||||
@extend %icon-line-tofu
|
||||
background-size: 20px
|
||||
@media #{$medium-up}
|
||||
border-left: 1px solid $pebble-grey
|
||||
|
||||
.option-arrow
|
||||
@extend %icon-line-arrowtabs
|
||||
transform: rotate(90deg)
|
||||
background-size: 14px
|
||||
@media #{$medium-up}
|
||||
border-bottom: 1px solid $pebble-grey
|
||||
|
||||
.option-dropdown
|
||||
display: none
|
||||
position: absolute
|
||||
|
@ -78,7 +93,6 @@ $dropdown-button-margin: -9px
|
|||
color: white
|
||||
background-color: $oxide-blue
|
||||
|
||||
|
||||
.option-search
|
||||
input[type="text"]
|
||||
display: block
|
||||
|
@ -87,7 +101,6 @@ $dropdown-button-margin: -9px
|
|||
border-bottom: 1px solid $oxide-blue
|
||||
border-radius: 0
|
||||
|
||||
|
||||
.option-list
|
||||
list-style: none
|
||||
padding: 0
|
||||
|
@ -101,3 +114,90 @@ $dropdown-button-margin: -9px
|
|||
vertical-align: top
|
||||
margin-right: .3em
|
||||
border-radius: 50%
|
||||
|
||||
|
||||
|
||||
.dropup
|
||||
&.is-open
|
||||
.dropup-list
|
||||
display: block
|
||||
.dropup-tofu
|
||||
@extend %icon-line-tofu-teal
|
||||
outline: none
|
||||
|
||||
.dropup-tofu
|
||||
@extend %icon-line-tofu
|
||||
background:
|
||||
color: transparent
|
||||
size: 100%
|
||||
repeat: no-repeat
|
||||
position: 0 5px
|
||||
width: 2.5em
|
||||
height: 2.5em
|
||||
border: none
|
||||
text-indent: 999%
|
||||
overflow: hidden
|
||||
white-space: nowrap
|
||||
cursor: pointer
|
||||
display: none
|
||||
@media #{$medium-up}
|
||||
display: inline-block
|
||||
&:hover,
|
||||
&:active
|
||||
@extend %icon-line-tofu-teal
|
||||
outline: none
|
||||
|
||||
.dropup-list
|
||||
list-style: none
|
||||
padding: 0
|
||||
margin: 2em 0 0
|
||||
background-color: white
|
||||
text-align: center
|
||||
|
||||
li
|
||||
display: inline-block
|
||||
a
|
||||
display: inline-block
|
||||
width: 100%
|
||||
padding: 0.5em 1em
|
||||
background-color: white
|
||||
[class^="icon-"]
|
||||
margin-right: .3rem
|
||||
&:hover,
|
||||
&:active
|
||||
background: $oxide-blue
|
||||
color: white
|
||||
.icon-trigger
|
||||
@extend %icon-line-trigger-white
|
||||
.icon-deactivate
|
||||
@extend %icon-line-cross-white
|
||||
border-color: white
|
||||
.icon-settings
|
||||
@extend %icon-line-cog-white
|
||||
|
||||
@media #{$medium-up}
|
||||
position: absolute
|
||||
right: 0
|
||||
top: -7em
|
||||
margin: 0
|
||||
background-color: white
|
||||
border: 1px solid $oxide-blue
|
||||
border-radius: 2px
|
||||
display: none
|
||||
z-index: 2
|
||||
text-align: left
|
||||
li
|
||||
display: block
|
||||
&:last-of-type
|
||||
&:after
|
||||
content: ""
|
||||
display: block
|
||||
width: 1.6em
|
||||
height: 1.6em
|
||||
border: 1px solid $oxide-blue
|
||||
background: white
|
||||
transform: rotate(45deg)
|
||||
position: absolute
|
||||
bottom: -0.7em
|
||||
right: 1.7em
|
||||
z-index: -1
|
||||
|
|
|
@ -32,20 +32,14 @@
|
|||
|
||||
.success,
|
||||
.notice
|
||||
color: #3ba85b
|
||||
background-color: #deebdd
|
||||
color: $turf-green
|
||||
background-color: $seed-green
|
||||
.close
|
||||
@extend .icon--dismiss-green
|
||||
|
||||
.broadcast
|
||||
color: #D8C500
|
||||
background-color: #FFFBD7
|
||||
.close
|
||||
@extend .icon--dismiss-yellow
|
||||
|
||||
.error
|
||||
color: #de4248
|
||||
background-color: #f1b6ad
|
||||
color: $brick-red
|
||||
background-color: $quartz-red
|
||||
.close
|
||||
@extend .icon--dismiss-red
|
||||
|
||||
|
|
|
@ -6,34 +6,49 @@
|
|||
repeat: no-repeat
|
||||
|
||||
.icon
|
||||
width: 1em
|
||||
height: 1em
|
||||
width: 15px
|
||||
height: 15px
|
||||
@extend %icon
|
||||
|
||||
.status-icon *,
|
||||
.request-icon *
|
||||
fill: none
|
||||
stroke: $cement-grey
|
||||
stroke-linecap: round
|
||||
stroke-linejoin: round
|
||||
stroke-miterlimit: 10
|
||||
stroke-width: 2px
|
||||
|
||||
.status-icon
|
||||
@extend %icon
|
||||
width: 13px
|
||||
height: 20px
|
||||
margin-right: .3rem
|
||||
|
||||
.request-icon
|
||||
@extend %icon
|
||||
width: 16px
|
||||
height: 19px
|
||||
margin-right: .1rem
|
||||
|
||||
%icon-download-log
|
||||
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12.4"><style>.st0{fill:%23f1f1f1;}</style><g id="downloadlog"><path class="st0" d="M5.1 11.3c-.4 0-.7-.3-.7-.7V.6c0-.3.3-.6.7-.6.4 0 .7.3.7.7v10c-.1.4-.4.6-.7.6z"/><path class="st0" d="M5.1 12.4c-.2 0-.3-.1-.5-.2L.2 7.8c-.3-.3-.3-.7 0-.9s.7-.3.9 0L5 10.8l4-3.9c.3-.3.7-.3.9 0s.3.7 0 .9l-4.4 4.4c-.1.1-.3.2-.4.2zM14.1 2.1H7.9c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h6.2c.4 0 .7.3.7.7s-.3.7-.7.7zM14.3 5.3H7.9c-.4 0-.6-.3-.6-.7 0-.4.2-.6.6-.6h6.4c.4 0 .7.2.7.6 0 .4-.3.7-.7.7zM14.3 8.5h-2.4c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7h2.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7zM13 11.6H9.2c-.4 0-.7-.3-.7-.7s.3-.7.7-.7H13c.4 0 .7.3.7.7s-.4.7-.7.7z"/></g></svg>')
|
||||
background-image: inline-image('stroke-icons/icon-downloadlogs.svg')
|
||||
.icon-download-log
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-download-log
|
||||
width: 1.5em
|
||||
height: 1.1em
|
||||
vertical-align: middle
|
||||
background-size: auto 14px
|
||||
background-position: 0 -1px
|
||||
%icon-remove-log
|
||||
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 10.9"><style>.st0{fill:%23f1f1f1;}</style><g id="removelog"><path class="st0" d="M12.3 1.8h1.9c.3 0 .6-.3.6-.6s-.3-.6-.6-.6h-1.9c-.3 0-.6.3-.6.6 0 .4.3.6.6.6zM9.7 3.5c-.3 0-.6.3-.6.6s.3.6.6.6h4.8c.3 0 .6-.3.6-.6s-.3-.6-.6-.6H9.7zM14.4 6.3H9.7c-.3 0-.6.3-.6.6s.3.6.6.6h4.7c.3 0 .6-.3.6-.6 0-.4-.3-.6-.6-.6zM13.2 9.1h-.7c-.3 0-.6.3-.6.6s.3.6.6.6h.7c.3 0 .6-.3.6-.6 0-.4-.3-.6-.6-.6z"/><path class="st0" d="M6.3 5.4L10.7 1c.2-.2.2-.6 0-.9-.2-.2-.6-.2-.9 0L5.4 4.5 1.1.2C.9 0 .5 0 .2.2s-.2.6 0 .9l4.4 4.4L.2 9.8c-.2.2-.2.6 0 .9.1.1.3.2.4.2s.3-.1.4-.2l4.4-4.4 4.4 4.4c.1.1.3.2.4.2.2 0 .3-.1.4-.2.2-.2.2-.6 0-.9L6.3 5.4z"/></g></svg>')
|
||||
background-image: inline-image('stroke-icons/icon-deletelogs.svg')
|
||||
.icon-remove-log
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-remove-log
|
||||
width: 1.5em
|
||||
height: 1.1em
|
||||
vertical-align: middle
|
||||
background-size: auto 14px
|
||||
background-position: 0 -1px
|
||||
|
||||
%icon-arrow-down
|
||||
background-image: inline-image('line-icons/icon-arrow-down.svg')
|
||||
background-image: inline-image('stroke-icons/icon-arrowdown.svg')
|
||||
|
||||
.icon--search
|
||||
background-image: inline-image('ui/search.svg')
|
||||
background-image: inline-image('stroke-icons/icon-search.svg')
|
||||
|
||||
.icon--dismiss-yellow
|
||||
background-image: inline-image('ui/icon-warning-dismiss.svg')
|
||||
|
@ -45,105 +60,92 @@
|
|||
.icon--dismiss-grey
|
||||
background-image: inline-image('ui/dismiss.svg')
|
||||
|
||||
%icon-hook-on
|
||||
background-image: inline-image('ui/hooks-on.svg')
|
||||
%icon-hook-off
|
||||
background-image: inline-image('ui/hooks-off.svg')
|
||||
|
||||
%icon-line-trashcan
|
||||
background-image: inline-image('line-icons/icon-trash.svg')
|
||||
background-image: inline-image('stroke-icons/icon-trash.svg')
|
||||
%icon-line-trashcan-red
|
||||
background-image: inline-image('line-icons/icon-trash-red.svg')
|
||||
background-image: inline-image('stroke-icons/icon-trash-red.svg')
|
||||
%icon-line-trashcan-disabled
|
||||
background-image: inline-image('line-icons/icon-trash-disabled.svg')
|
||||
background-image: inline-image('stroke-icons/icon-trash-disabled.svg')
|
||||
|
||||
.icon-delete
|
||||
@extend .icon
|
||||
@extend %icon-line-trashcan
|
||||
.icon-delete-hover
|
||||
@extend %icon-line-trashcan-red
|
||||
.icon-delete-disabled
|
||||
@extend %icon-line-trashcan-disabled
|
||||
|
||||
%icon-line-arrowtabs
|
||||
background-image: inline-image('stroke-icons/icon-arrowtabs.svg')
|
||||
%icon-line-arrowtabs-teal
|
||||
background-image: inline-image('stroke-icons/icon-arrowtabs-teal.svg')
|
||||
|
||||
%icon-line-key
|
||||
background-image: inline-image('line-icons/icon-key.svg')
|
||||
background-image: inline-image('stroke-icons/icon-key.svg')
|
||||
.icon-key
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-line-key
|
||||
width: 20px
|
||||
height: 20px
|
||||
background-position: 0 6px
|
||||
margin-right: .1em
|
||||
margin-right: .3rem
|
||||
|
||||
%icon-line-fingerprint
|
||||
background-image: inline-image('line-icons/icon-fingerprint.svg')
|
||||
background-image: inline-image('stroke-icons/icon-fingerprint.svg')
|
||||
.icon-fingerprint
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-line-fingerprint
|
||||
width: 20px
|
||||
height: 20px
|
||||
margin-right: .1em
|
||||
margin-right: .3rem
|
||||
|
||||
%icon-line-calendar
|
||||
background-image: inline-image('line-icons/icon-cal.svg')
|
||||
background-image: inline-image('stroke-icons/icon-calendar.svg')
|
||||
.icon-line-calendar,
|
||||
.icon-cal,
|
||||
.icon-calendar
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-line-calendar
|
||||
width: 20px
|
||||
height: 18px
|
||||
margin-right: .1em
|
||||
background:
|
||||
size: auto 20px
|
||||
position: -1px 0
|
||||
margin-right: .3rem
|
||||
|
||||
%icon-line-clock
|
||||
background-image: inline-image('line-icons/icon-clock.svg')
|
||||
background-image: inline-image('stroke-icons/icon-clock.svg')
|
||||
.icon-clock
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-line-clock
|
||||
width: 20px
|
||||
height: 20px
|
||||
margin-right: .1em
|
||||
background:
|
||||
size: auto 21px
|
||||
position: -2px 0
|
||||
margin-right: .2rem
|
||||
|
||||
%icon-line-stopwatch
|
||||
background-image: inline-image('line-icons/icon-stopwatch.svg')
|
||||
background-image: inline-image('stroke-icons/icon-stopwatch.svg')
|
||||
.icon-stopwatch
|
||||
@extend %icon
|
||||
@extend %icon-line-stopwatch
|
||||
width: 20px
|
||||
height: 18px
|
||||
margin-right: .1em
|
||||
background-size: auto 18px
|
||||
background-position: 1px 0
|
||||
width: 17px
|
||||
height: 19px
|
||||
margin-right: .2rem
|
||||
|
||||
.icon-line-build
|
||||
@extend %icon
|
||||
background-image: inline-image('line-icons/icon-build.svg')
|
||||
background-image: inline-image('stroke-icons/icon-builds.svg')
|
||||
|
||||
%icon-line-commit
|
||||
background-image: inline-image('line-icons/icon-commit.svg')
|
||||
%icon-line-commit,
|
||||
%icon-github
|
||||
background-image: inline-image('stroke-icons/icon-github.svg')
|
||||
.icon-line-commit
|
||||
@extend %icon
|
||||
@extend %icon-line-commit
|
||||
|
||||
%icon-line-eye
|
||||
background-image:inline-image('line-icons/icon-view.svg')
|
||||
background-image:inline-image('stroke-icons/icon-seemore.svg')
|
||||
%icon-line-eye-white
|
||||
background-image:inline-image('stroke-icons/icon-seemore-white.svg')
|
||||
|
||||
%icon-line-question
|
||||
background-image: inline-image('line-icons/icon-help.svg')
|
||||
background-image: inline-image('stroke-icons/icon-help.svg')
|
||||
%icon-line-question-teal
|
||||
background-image: inline-image('line-icons/icon-help-teal.svg')
|
||||
background-image: inline-image('stroke-icons/icon-help-teal.svg')
|
||||
|
||||
.icon-question
|
||||
width: 1em
|
||||
height: 1em
|
||||
width: 18px
|
||||
height: 18px
|
||||
background:
|
||||
repeat: no-repeat
|
||||
position: 4px 2px
|
||||
position: 3px 3px
|
||||
size: auto 10px
|
||||
display: inline-block
|
||||
border: solid 1px #E4E6E6
|
||||
|
@ -154,68 +156,102 @@
|
|||
@extend %icon-line-question-teal
|
||||
|
||||
%icon-line-hash
|
||||
background-image: inline-image('line-icons/icon-hash.svg')
|
||||
background-image: inline-image('stroke-icons/icon-hash.svg')
|
||||
.icon-hash
|
||||
@extend .icon
|
||||
@extend %icon-line-hash
|
||||
|
||||
%icon-line-linux
|
||||
background-image: inline-image('line-icons/icon-linux.svg')
|
||||
background-image: inline-image('stroke-icons/icon-linux.svg')
|
||||
%icon-line-mac
|
||||
background-image: inline-image('line-icons/icon-mac.svg')
|
||||
background-image: inline-image('stroke-icons/icon-mac.svg')
|
||||
%icon-line-language
|
||||
background-image: inline-image('line-icons/icon-lang.svg')
|
||||
background-image: inline-image('stroke-icons/icon-language.svg')
|
||||
%icon-line-environment
|
||||
background-image: inline-image('line-icons/icon-environment.svg')
|
||||
background-image: inline-image('stroke-icons/icon-environment.svg')
|
||||
|
||||
%icon-line-cog
|
||||
background-image: inline-image('line-icons/icon-settings.svg')
|
||||
background-image: inline-image('stroke-icons/icon-settings.svg')
|
||||
%icon-line-cog-teal
|
||||
background-image: inline-image('line-icons/icon-settings-teal.svg')
|
||||
background-image: inline-image('stroke-icons/icon-settings-teal.svg')
|
||||
%icon-line-cog-white
|
||||
background-image: inline-image('stroke-icons/icon-settings-white.svg')
|
||||
|
||||
%icon-line-tofu
|
||||
background-image: inline-image('stroke-icons/icon-tofuburger.svg')
|
||||
%icon-line-tofu-teal
|
||||
background-image: inline-image('stroke-icons/icon-tofuburger-teal.svg')
|
||||
|
||||
.icon-settings
|
||||
@extend %icon-line-cog
|
||||
width: 1em
|
||||
height: 1em
|
||||
vertical-align: middle
|
||||
display: inline-block
|
||||
background:
|
||||
repeat: no-repeat
|
||||
position: 0 0
|
||||
@extend .icon
|
||||
&:hover
|
||||
@extend %icon-line-cog-teal
|
||||
|
||||
%icon-line-dropdown
|
||||
background-image: inline-image('line-icons/icon-arrow-dropdown.svg')
|
||||
background-image: inline-image('stroke-icons/icon-arrow-dropdown.svg')
|
||||
%icon-line-dropdown-teal
|
||||
background-image: inline-image('line-icons/icon-arrow-dropdown-teal.svg')
|
||||
background-image: inline-image('stroke-icons/icon-arrow-dropdown-teal.svg')
|
||||
|
||||
%icon-line-cross
|
||||
background-image: inline-image('line-icons/icon-failed.svg')
|
||||
background-image: inline-image('stroke-icons/icon-failed.svg')
|
||||
%icon-line-cross-white
|
||||
background-image: inline-image('line-icons/icon-failed-white.svg')
|
||||
background-image: inline-image('stroke-icons/icon-failed-white.svg')
|
||||
%icon-line-cross-teal
|
||||
background-image: inline-image('line-icons/icon-failed-teal.svg')
|
||||
background-image: inline-image('stroke-icons/icon-failed-teal.svg')
|
||||
|
||||
.icon-deactivate
|
||||
@extend .icon
|
||||
@extend %icon-line-cross
|
||||
border: 1px solid $cement-grey
|
||||
border-radius: 50%
|
||||
&:hover,
|
||||
&:active
|
||||
@extend %icon-line-cross-white
|
||||
border-color: white
|
||||
|
||||
%icon-line-trigger
|
||||
background-image: inline-image('line-icons/icon-trigger.svg')
|
||||
background-image: inline-image('stroke-icons/icon-restart.svg')
|
||||
%icon-line-trigger-white
|
||||
background-image: inline-image('line-icons/icon-trigger-white.svg')
|
||||
background-image: inline-image('stroke-icons/icon-restart-white.svg')
|
||||
%icon-line-trigger-teal
|
||||
background-image: inline-image('line-icons/icon-trigger-teal.svg')
|
||||
background-image: inline-image('stroke-icons/icon-restart-teal.svg')
|
||||
|
||||
.icon-trigger
|
||||
@extend .icon
|
||||
@extend %icon-line-trigger
|
||||
&:hover,
|
||||
&:active
|
||||
@extend %icon-line-trigger-white
|
||||
|
||||
%icon-line-lock
|
||||
background-image: inline-image('stroke-icons/icon-private.svg')
|
||||
.icon-lock
|
||||
@extend %icon
|
||||
@extend %icon-line-lock
|
||||
width: 18px
|
||||
height: 18px
|
||||
margin-top: 1em
|
||||
white-space: nowrap
|
||||
text-indent: 999px
|
||||
overflow: hidden
|
||||
|
||||
.icon-star
|
||||
@extend %icon
|
||||
width: 18px
|
||||
height: 18px
|
||||
|
||||
%icon-line-passed
|
||||
background-image: inline-image('stroke-icons/icon-passed.svg')
|
||||
|
||||
%icon-github
|
||||
background-image: inline-image('line-icons/icon-commit.svg')
|
||||
.icon-github
|
||||
display: inline-block
|
||||
width: 1.1em
|
||||
height: 1.1em
|
||||
margin-right: 0.3em
|
||||
vertical-align: middle
|
||||
background:
|
||||
repeat: no-repeat
|
||||
size: 36px 21px
|
||||
position: -9px -3px
|
||||
@extend .icon
|
||||
@extend %icon-github
|
||||
|
||||
%icon-github-circle
|
||||
background-image: inline-image('line-icons/icon-github-outline.svg')
|
||||
background-image: inline-image('stroke-icons/icon-repooctocat.svg')
|
||||
.icon-github-circle
|
||||
display: inline-block
|
||||
width: 1.2em
|
||||
|
@ -226,16 +262,17 @@
|
|||
@extend %icon-github-circle
|
||||
|
||||
%icon-line-flag-teal
|
||||
background-image: inline-image('line-icons/icon-flag.svg')
|
||||
background-image: inline-image('stroke-icons/icon-flag.svg')
|
||||
%icon-line-flag-yellow
|
||||
background-image: inline-image('line-icons/icon-flag-yellow.svg')
|
||||
background-image: inline-image('stroke-icons/icon-flag-yellow.svg')
|
||||
|
||||
%icon-line-scale
|
||||
background-image: inline-image('line-icons/icon-scales.svg')
|
||||
background-image: inline-image('stroke-icons/icon-scales.svg')
|
||||
|
||||
.icon-scale
|
||||
@extend %icon
|
||||
@extend .icon
|
||||
@extend %icon-line-scale
|
||||
margin-right: .3rem
|
||||
|
||||
.icon--plus
|
||||
width: 1.1rem
|
||||
|
|
38
app/styles/app/modules/lastbuild.sass
Normal file
|
@ -0,0 +1,38 @@
|
|||
.lastbuilds
|
||||
list-style: none
|
||||
margin: 0
|
||||
padding: 0
|
||||
width: 100%
|
||||
display: flex
|
||||
justify-content: flex-start
|
||||
@media #{$small-only}
|
||||
flex-flow: row wrap
|
||||
margin-top: 1em
|
||||
|
||||
li
|
||||
flex: 0 0 20%
|
||||
height: 30px
|
||||
@each $key, $value in $stateMap
|
||||
&.#{$key}
|
||||
background-color: map-get($value, color)
|
||||
|
||||
@media #{$medium-up}
|
||||
flex: 0 0 10%
|
||||
margin-right: 2px
|
||||
transform: translateY(25px)
|
||||
transition: transform 150ms ease
|
||||
&:hover
|
||||
transform: translateY(0)
|
||||
a
|
||||
display: block
|
||||
width: 100%
|
||||
height: 30%
|
||||
padding-top: 4px
|
||||
color: white
|
||||
text-align: center
|
||||
|
||||
.status-icon
|
||||
svg *
|
||||
stroke: white !important
|
||||
.circle
|
||||
border-color: white !important
|
|
@ -23,12 +23,12 @@
|
|||
.notice--blue
|
||||
padding: 0.3em 0.5em 0.3em
|
||||
margin-bottom: .5em
|
||||
background-color: #d2f5f9
|
||||
color: #40a3ad
|
||||
background-color: $agate-blue
|
||||
color: $oxide-blue
|
||||
border-radius: 2px
|
||||
font-size: 15px
|
||||
a
|
||||
color: #40a3ad
|
||||
color: $oxide-blue
|
||||
text-decoration: underline
|
||||
|
||||
.icon-flag
|
||||
|
@ -36,7 +36,7 @@
|
|||
@extend %icon-line-flag-teal
|
||||
display: inline-block
|
||||
background:
|
||||
color: #40a3ad
|
||||
color: $oxide-blue
|
||||
size: auto 13px
|
||||
position: 6px 4px
|
||||
repeat: no-repeat
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
.help
|
||||
display: inline-block
|
||||
@extend %icon-line-question
|
||||
@extend %icon
|
||||
height: 19px
|
||||
width: 16px
|
||||
margin: -4px 0 0 3px
|
||||
vertical-align: middle
|
||||
background:
|
||||
image: inline-image('ui/help.svg')
|
||||
repeat: no-repeat
|
||||
position: 0 1px
|
||||
color: transparent
|
||||
size: 100%
|
||||
cursor: pointer
|
||||
|
||||
.popup
|
||||
|
@ -19,25 +16,23 @@
|
|||
transform: translate(-50%, -50%)
|
||||
height: auto
|
||||
padding: 2em
|
||||
color: #565656
|
||||
color: $asphalt-grey
|
||||
z-index: 99
|
||||
background-color: white
|
||||
border-radius: 2px
|
||||
|
||||
display: none
|
||||
background-color: #fff
|
||||
border: solid 10px #f1f1f1
|
||||
border: solid 10px $pebble-grey
|
||||
|
||||
&:before
|
||||
content: ""
|
||||
|
||||
.close
|
||||
position: absolute
|
||||
display: block
|
||||
right: 5px
|
||||
top: 8px
|
||||
width: 30px
|
||||
height: 30px
|
||||
width: 20px
|
||||
height: 20px
|
||||
text-indent: 999%
|
||||
overflow: hidden
|
||||
white-space: nowrap
|
||||
|
|
|
@ -11,6 +11,46 @@
|
|||
vertical-align: middle
|
||||
line-height: 1.5
|
||||
|
||||
.rows
|
||||
+rowBorder
|
||||
display: flex
|
||||
flex-flow: column wrap
|
||||
margin-bottom: 1rem
|
||||
@each $key, $value in $stateMap
|
||||
+rowColor(#{$key}, map-get($value, color))
|
||||
|
||||
@media #{$medium-up}
|
||||
position: relative
|
||||
flex-flow: row nowrap
|
||||
justify-content: space-between
|
||||
align-items: center
|
||||
|
||||
.label
|
||||
margin: 0
|
||||
font-size: 10px
|
||||
color: $cement-grey
|
||||
text-transform: uppercase
|
||||
font-weight: 600
|
||||
|
||||
.row-label,
|
||||
.row-label a
|
||||
font-size: $font-size-m
|
||||
color: $cement-grey
|
||||
|
||||
.row-label
|
||||
margin: 0
|
||||
a:hover,
|
||||
a:active
|
||||
border-bottom: 1px solid $cement-grey
|
||||
|
||||
.row-content
|
||||
margin: 0
|
||||
font-size: 16px
|
||||
a:hover,
|
||||
a:active
|
||||
border-bottom: 1px solid $asphalt-grey
|
||||
|
||||
// old! remove this
|
||||
.row-li
|
||||
position: relative
|
||||
border: 1px solid $cream-dark
|
||||
|
@ -20,7 +60,6 @@
|
|||
|
||||
h2, h3, small
|
||||
margin: 0
|
||||
font-weight: $font-weight-normal
|
||||
font-size: 16px
|
||||
small
|
||||
font-weight: $font-weight-bold
|
||||
|
@ -72,11 +111,7 @@
|
|||
display: block
|
||||
|
||||
.icon
|
||||
width: 1.3em
|
||||
height: 1.3em
|
||||
margin-right: .2em
|
||||
display: inline-block
|
||||
vertical-align: middle
|
||||
|
||||
.avatar
|
||||
display: inline-block
|
||||
|
|
|
@ -79,6 +79,6 @@
|
|||
background-position: 50%
|
||||
background-repeat: no-repeat
|
||||
.off
|
||||
@extend %icon-hook-off
|
||||
@extend %icon-line-cross-white
|
||||
.on
|
||||
@extend %icon-hook-on
|
||||
@extend %icon-line-passed
|
||||
|
|
|
@ -33,11 +33,8 @@
|
|||
|
||||
.icon-trigger
|
||||
@extend %icon-line-trigger-white
|
||||
@extend %icon
|
||||
width: 1.5em
|
||||
height: 1.5em
|
||||
margin-right: 0.3em
|
||||
|
||||
@extend .icon
|
||||
margin-right: 0.3rem
|
||||
|
||||
.loading-indicator--white
|
||||
vertical-align: top
|
|
@ -10,6 +10,7 @@
|
|||
width: 100%
|
||||
@media #{$medium-up}
|
||||
margin-top: 0
|
||||
margin-bottom: 4px
|
||||
display: block
|
||||
li
|
||||
flex: 0 0 8em
|
||||
|
@ -76,13 +77,13 @@
|
|||
left: .5em
|
||||
|
||||
.tab-arrow
|
||||
@extend %icon-line-arrowtabs
|
||||
display: inline-block
|
||||
position: absolute
|
||||
top: 5px
|
||||
left: -19px
|
||||
width: .7em
|
||||
top: 1px
|
||||
left: -22px
|
||||
width: 1em
|
||||
height: 1.3em
|
||||
background:
|
||||
size: auto 100%
|
||||
repeat: no-repeat
|
||||
image: inline-image('line-icons/icon-arrow-tabs.svg')
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
.tofuburger
|
||||
@extend %icon-line-tofu
|
||||
height: $top-height
|
||||
width: 30px
|
||||
border: none
|
||||
|
@ -7,7 +7,6 @@
|
|||
outline: none
|
||||
text-indent: -9999px
|
||||
background:
|
||||
image: inline-image('line-icons/icon-tofuburger.svg')
|
||||
size: 100%
|
||||
position: center center
|
||||
repeat: no-repeat
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{{#if cachesExist}}
|
||||
<div class="caches-header">
|
||||
<h1 class="small-title">All caches <small>(<a href="http://docs.travis-ci.com/user/caching/" title="Read about caching">Read the docs</a>)</small></h1>
|
||||
<a {{action "deleteRepoCache"}} class="{{if isDeleting 'deleting'}} delete-cache-button" title="Delete all repository caches">
|
||||
<a {{action "deleteRepoCache"}} href="#" class="{{if isDeleting 'deleting'}} delete-cache-button" title="Delete all repository caches">
|
||||
Delete all repository caches
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -5,21 +5,7 @@
|
|||
</div>
|
||||
<div class="row-builds">
|
||||
<div class="row-item">
|
||||
<span class="icon icon-line-build">
|
||||
<svg x="0px" y="0px" viewBox="0 0 20 20" xml:space="preserve" enable-background="new 0 0 20 20">
|
||||
<g id="Build">
|
||||
<path fill="#A7AEAE" d="M15.2,15.3c-0.4,0-0.7-0.1-1-0.4c-0.4-0.3-0.6-0.8-0.6-1.2c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5
|
||||
c0,0.2,0.1,0.4,0.2,0.5c0.1,0.1,0.3,0.2,0.5,0.1c0.2,0,0.4-0.2,0.5-0.5c0.1-0.3-0.1-0.6-0.4-0.7c-0.4-0.2-0.7-0.6-0.7-1.1V8.7
|
||||
c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5V12c0,0,0,0.2,0.1,0.2c0.7,0.3,1.1,1,1,1.8c-0.1,0.6-0.6,1.2-1.3,1.3
|
||||
C15.3,15.3,15.3,15.3,15.2,15.3z"/>
|
||||
<path fill="#A7AEAE" d="M9.1,17.5C9.1,17.5,9.1,17.5,9.1,17.5H3.7c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5h1.7V8.9H3.4
|
||||
C2.5,8.9,2.5,7.1,2.5,7V6.6c0-0.5,0.3-0.9,0.7-1l2.2-0.8V3.3c0-0.2,0.1-0.5,0.3-0.6c0.2-0.2,0.4-0.2,0.7-0.2l1.5,0.3
|
||||
C9,3,9.6,3.1,9.6,3.7v1.2l7.1,0.9c0.5,0.1,0.8,0.5,0.8,0.9V7c0,0,0,1.8-0.9,1.8h-7v7.6h1.7c0.3,0,0.5,0.2,0.5,0.5
|
||||
c0,0.3-0.2,0.5-0.5,0.5H9.1C9.1,17.5,9.1,17.5,9.1,17.5z M6.4,16.5l2.2,0V8.9H6.4V16.5z M9.6,7.9h6.7c0.1-0.3,0.2-0.7,0.2-0.9
|
||||
V6.7L9.6,5.9V7.9z M6.4,7.9h2.2V5.7L8.1,5.7l-1.7,0V7.9z M3.6,7.9h1.8v-2l-2,0.7l0,0.4C3.5,7.2,3.5,7.6,3.6,7.9z M6.4,4.7h1.7
|
||||
l0.5,0.1V4c-0.1,0-0.4-0.1-0.9-0.2c0,0-0.1,0-0.1,0L6.4,3.5V4.7z"/>
|
||||
</g>
|
||||
</svg></span>
|
||||
<span class="icon icon-line-build"></span>
|
||||
<span class="label-align">
|
||||
{{#if build.last_build}}
|
||||
{{#if getLast5Builds.isLoading}}
|
||||
|
@ -37,8 +23,8 @@
|
|||
<div class="row-request">
|
||||
<div class="row-item">
|
||||
{{#if build.last_build}}
|
||||
{{request-icon event=build.last_build.event_type state=build.last_build.state}}
|
||||
{{#link-to "build" build.last_build.id}}
|
||||
{{request-icon event=build.last_build.event_type state=build.last_build.state}}
|
||||
<span class="label-align">#{{build.last_build.number}} {{build.last_build.state}}</span>
|
||||
{{/link-to}}
|
||||
{{else}}
|
||||
|
@ -61,8 +47,8 @@
|
|||
<div class="two-line">
|
||||
<div class="row-commit">
|
||||
<div class="row-item">
|
||||
<a href="{{urlGithubCommit}}" title="commit on GitHub">
|
||||
<span class="icon-github"></span>
|
||||
<a href="{{urlGithubCommit}}" title="commit on GitHub">
|
||||
<span class="label-align">
|
||||
{{#if build.last_build}}
|
||||
{{format-sha build.last_build.commit.sha}}
|
||||
|
|
|
@ -1,26 +1,18 @@
|
|||
<span class="icon-broadcast {{status}} {{if isOpen 'is-open'}}" title="broadcasts" {{action 'toggleBroadcasts'}}>
|
||||
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-1 0 16 25" xml:space="preserve">
|
||||
<g>
|
||||
<path class="tower-path" d="M0.989,18.732l0.92-2.247l3.926,0.663V20h0.868l-0.001-2.852l3.926-0.663l0.92,2.247h0.989L8.167,8.078
|
||||
H7.183l0.004,0.011H5.351l0.004-0.011H4.37L0,18.732H0.989z M6.702,16.288l-0.003-3.877l2.461,0.492l1.131,2.759L6.702,16.288z
|
||||
M2.246,15.662l1.131-2.759l2.459-0.492l-0.001,3.877L2.246,15.662z M8.794,12.015l-2.095-0.483L6.698,8.92h0.827L8.794,12.015z
|
||||
M5.836,8.92v2.612l-2.093,0.482L5.012,8.92H5.836z"/>
|
||||
<g class="radio-wave--right">
|
||||
<path class="tower-path" d="M10.035,8.32l0.606,0.606c2.267-2.355,2.263-6.58-0.016-8.927l-0.591,0.593
|
||||
C11.992,2.781,11.99,6.115,10.035,8.32z"/>
|
||||
<path class="tower-path" d="M8.631,1.995C9.823,3.41,9.824,5.496,8.635,6.922l0.606,0.606c1.522-1.766,1.524-4.394,0-6.144L8.631,1.995
|
||||
z"/>
|
||||
</g>
|
||||
<g class="radio-wave--left">
|
||||
<path class="tower-path" d="M1.855,8.927L2.462,8.32C0.507,6.115,0.506,2.781,2.463,0.593L1.872,0C-0.407,2.347-0.41,6.571,1.855,8.927
|
||||
z"/>
|
||||
<path class="tower-path" d="M3.257,1.385c-1.524,1.75-1.523,4.378-0.001,6.144l0.606-0.606C2.674,5.496,2.674,3.41,3.866,1.995
|
||||
L3.257,1.385z"/>
|
||||
</g>
|
||||
<path class="tower-path" d="M6.246,6.437c1.082,0,1.962-0.88,1.962-1.964c0-1.085-0.88-1.964-1.962-1.964
|
||||
c-1.087,0-1.966,0.879-1.966,1.964C4.28,5.557,5.159,6.437,6.246,6.437z"/>
|
||||
<svg version="1.1" id="icon-broadcast" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 21.625" xml:space="preserve" alt="Broadcast tower">
|
||||
<g class="tower-path">
|
||||
<circle class="path" cx="7.503" cy="6.733" r="1.775"/>
|
||||
<polyline class="path" points="8.303,8.508 13.627,21.206 4.728,14.441 "/>
|
||||
<polyline class="path" points="6.828,8.508 1.528,21.206 10.427,14.441 "/>
|
||||
<line class="path" x1="7.5" y1="8.508" x2="7.5" y2="20.673"/>
|
||||
</g>
|
||||
<g class="radio-wave--outer">
|
||||
<path class="path" d="M2.454,11.81C1.247,10.557,0.5,8.859,0.5,6.981c0-2.936,1.812-5.441,4.375-6.481"/>
|
||||
<path class="path" d="M12.668,11.668C13.8,10.43,14.5,8.792,14.5,6.981c0-2.936-1.812-5.441-4.375-6.481"/>
|
||||
</g>
|
||||
<g class="radio-wave--inner">
|
||||
<path class="path" d="M3.751,9.161C3.356,8.506,3.123,7.743,3.123,6.922c0-1.836,1.133-3.402,2.735-4.052"/>
|
||||
<path class="path" d="M11.339,8.986c0.336-0.615,0.537-1.313,0.537-2.064c0-1.836-1.133-3.402-2.735-4.052"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
|
|
@ -1,111 +1,80 @@
|
|||
|
||||
<div class="two-line fade-out">
|
||||
<div class="row-name row-item row-color">
|
||||
<h3>{{#link-to "owner" repo.owner.login}}{{status-icon status=repo.default_branch.last_build.state}} {{repo.owner.login}}{{/link-to}}</h3>
|
||||
<h2>{{#link-to "repo" repo.owner.login repo.name}}<span class="label-align">{{repo.name}}</span>{{/link-to}}</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="one-line fade-out">
|
||||
<div class="row-request">
|
||||
<div class="row-item">
|
||||
{{#link-to "build" repo.owner.login repo.name repo.default_branch.last_build.id}}
|
||||
{{request-icon event=repo.default_branch.last_build.event_type state=repo.default_branch.last_build.state}}
|
||||
<span class="label-align">#{{repo.default_branch.last_build.number}} {{repo.default_branch.last_build.state}} on {{repo.default_branch.name}}</span>
|
||||
{{/link-to}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="one-line">
|
||||
<div class="row-commit">
|
||||
<div class="row-item">
|
||||
<a href="{{urlGithubCommit}}" title="commit on GitHub">
|
||||
<span class="icon-github"></span>
|
||||
<span class="label-align">
|
||||
{{format-sha repo.default_branch.last_build.commit.sha}}
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="one-line">
|
||||
<div class="row-calendar">
|
||||
<div class="row-item" title="{{repo.default_branch.last_build.finished_at}}">
|
||||
<span class="icon-calendar"></span>
|
||||
<span class="label-align">
|
||||
{{#if repo.default_branch.last_build}}
|
||||
{{format-time repo.default_branch.last_build.finished_at}}
|
||||
{{else}}
|
||||
-
|
||||
{{/if}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{!--
|
||||
<div class="one-line is-relative">
|
||||
<div class="row-nav dropup-trigger">
|
||||
<div class="row-item">
|
||||
<a href="#"><span class="icon icon-tofu">
|
||||
<svg x="0px" y="0px" viewBox="0 0 20 20" xml:space="preserve">
|
||||
<g id="Tofuburger">
|
||||
<path fill="#A7AEAE" d="M17.9,6.2H2.1C1.8,6.2,1.5,6,1.5,5.6C1.5,5.3,1.8,5,2.1,5h15.7c0.4,0,0.6,0.3,0.6,0.6
|
||||
C18.5,6,18.2,6.2,17.9,6.2z"/>
|
||||
<path fill="#A7AEAE" d="M17.9,10.6H2.1c-0.4,0-0.6-0.3-0.6-0.6s0.3-0.6,0.6-0.6h15.7c0.4,0,0.6,0.3,0.6,0.6S18.2,10.6,17.9,10.6z
|
||||
"/>
|
||||
<path fill="#A7AEAE" d="M17.9,15H2.1c-0.4,0-0.6-0.3-0.6-0.6c0-0.3,0.3-0.6,0.6-0.6h15.7c0.4,0,0.6,0.3,0.6,0.6
|
||||
C18.5,14.7,18.2,15,17.9,15z"/>
|
||||
</g>
|
||||
<div class="dash-head">
|
||||
<a href="#" class="dash-star is-starred" title="(un-) star this repo"><span class="icon-star">
|
||||
<svg version="1.1" id="icon-star" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve" alt="star repository">
|
||||
<path id="star" d="M7.159,1.035c0.188-0.38,0.495-0.38,0.683,0l1.596,3.234c0.188,0.38,0.685,0.741,1.105,0.802
|
||||
l3.569,0.519c0.42,0.061,0.515,0.353,0.211,0.649l-2.583,2.517c-0.304,0.296-0.494,0.88-0.422,1.298l0.61,3.555
|
||||
c0.072,0.418-0.177,0.599-0.552,0.401l-3.192-1.678c-0.375-0.197-0.99-0.197-1.365,0l-3.192,1.678
|
||||
c-0.375,0.197-0.624,0.017-0.552-0.401l0.61-3.555c0.072-0.418-0.118-1.002-0.422-1.298L0.678,6.24
|
||||
C0.374,5.944,0.469,5.652,0.889,5.591l3.569-0.519c0.42-0.061,0.917-0.422,1.105-0.802L7.159,1.035z"/>
|
||||
</svg>
|
||||
</span></a></div>
|
||||
</span></a>
|
||||
<span class="icon-lock">private repo</span>
|
||||
</div>
|
||||
<div class="dash-body">
|
||||
<div class="dash-main">
|
||||
<header class="fade-out dash-header">
|
||||
<h2 class="row-label">{{#link-to "owner" repo.owner.login}}{{repo.owner.login}}{{/link-to}}</h2>
|
||||
<h1 class="row-content">{{#link-to "repo" repo.owner.login repo.name}}{{repo.name}}{{/link-to}}</h1>
|
||||
</header>
|
||||
|
||||
<section class="dash-default">
|
||||
<h3 class="label">Default branch</h3>
|
||||
<p class="row-content color">
|
||||
{{request-icon event=repo.default_branch.last_build.event_type state=repo.default_branch.last_build.state}}
|
||||
{{repo.default_branch.name}} is {{repo.default_branch.last_build.state}}
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="dash-last-build">
|
||||
<div>
|
||||
<h3 class="label">Last build</h3>
|
||||
<p class="row-content color">
|
||||
{{status-icon status=repo.default_branch.last_build.state}}
|
||||
{{#link-to "build" repo.owner.login repo.name repo.default_branch.last_build.id}}
|
||||
<span class="label-align">#{{repo.default_branch.last_build.number}} {{repo.default_branch.last_build.state}}</span>
|
||||
{{/link-to}}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="label">Last commit</h3>
|
||||
<p class="row-content">
|
||||
<span class="icon-github"></span>
|
||||
<a href="{{urlGithubCommit}}" title="See the commit on Github">
|
||||
<span class="label-align">
|
||||
{{format-sha repo.default_branch.last_build.commit.sha}}
|
||||
</span>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="label">Last commit completed</h3>
|
||||
<p class="row-content" title="{{repo.default_branch.last_build.finished_at}}">
|
||||
<span class="icon-calendar"></span>
|
||||
<span class="label-align">
|
||||
{{#if repo.default_branch.last_build}}
|
||||
{{format-time repo.default_branch.last_build.finished_at}}
|
||||
{{else}}
|
||||
running
|
||||
{{/if}}</span>
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="dash-menu">
|
||||
<div class="dropup {{if dropupIsOpen "is-open"}}">
|
||||
<button type="button" class="dropup-tofu" {{action "openDropup"}}>open action menu</button>
|
||||
<ul class="dropup-list">
|
||||
<li><a href="#" title="Trigger a new build"><span class="icon-trigger"></span><span class="label-align">Trigger a build</span></a></li>
|
||||
<li><a href="#" title="Deactivate builds for this repository"><span class="icon-deactivate"></span><span class="label-align">Deactivate repository</span></a></li>
|
||||
<li><a href="#" title="See the settings for this repository"><span class="icon-settings"></span><span class="label-align">Settings</span></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropup--blue">
|
||||
<ul>
|
||||
<li><a {{action 'deactivateRepo'}}>
|
||||
<span class="icon icon-eye">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Failed">
|
||||
<path fill="#A7AEAE" d="M10.9,10l3.9-3.9c0.2-0.2,0.2-0.6,0-0.9c-0.2-0.2-0.6-0.2-0.9,0L10,9.1L6.1,5.2c-0.2-0.2-0.6-0.2-0.9,0
|
||||
c-0.2,0.2-0.2,0.6,0,0.9L9.1,10l-3.9,3.9c-0.2,0.2-0.2,0.6,0,0.9C5.3,14.9,5.5,15,5.6,15s0.3-0.1,0.4-0.2l3.9-3.9l3.9,3.9
|
||||
c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2c0.2-0.2,0.2-0.6,0-0.9L10.9,10z"/>
|
||||
</g>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="dropup-item">Deactivate</span></a>
|
||||
</li>
|
||||
<li>
|
||||
{{#if hasTriggered}}
|
||||
<span class="icon">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Passed">
|
||||
<path fill="#A7AEAE" d="M9.6,14.4c-0.1,0-0.3-0.1-0.4-0.1l-4-3.3c-0.3-0.2-0.3-0.6-0.1-0.9S5.8,9.8,6.1,10l3.4,2.8l4.9-7.5
|
||||
C14.6,5,15,4.9,15.3,5.1c0.3,0.2,0.4,0.6,0.2,0.9l-5.3,8.1C10.1,14.3,9.9,14.4,9.6,14.4C9.7,14.4,9.7,14.4,9.6,14.4z"/>
|
||||
</g>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="dropup-item no-link">Build triggered</span>
|
||||
{{else}}
|
||||
{{#if isTriggering}}
|
||||
{{loading-indicator}}
|
||||
{{else}}
|
||||
<a {{action 'tiggerBuild'}}>
|
||||
<span class="icon icon-trigger">
|
||||
<svg x="0px" y="0px" viewBox="0 0 20 20" xml:space="preserve">
|
||||
<g id="Trigger">
|
||||
<path fill="#A7AEAE" d="M17.2,7.9C17,7.6,16.6,7.7,16.3,8l-1,1.2C14.9,6,12.2,3.6,9,3.6c-3.6,0-6.4,2.9-6.4,6.4s2.9,6.4,6.4,6.4
|
||||
c1.8,0,3.6-0.8,4.8-2.2c0.2-0.3,0.2-0.7-0.1-0.9c-0.3-0.2-0.7-0.2-0.9,0.1c-1,1.1-2.4,1.7-3.9,1.7c-2.8,0-5.1-2.3-5.1-5.1
|
||||
S6.1,4.9,9,4.9c2.7,0,4.9,2.1,5.1,4.7l-1.7-1.1c-0.3-0.2-0.7-0.1-0.9,0.2s-0.1,0.7,0.2,0.9l2.8,1.8c0,0,0,0,0,0
|
||||
c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2,0,0.3-0.1c0,0,0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1l2-2.4C17.6,8.5,17.5,8.1,17.2,7.9z"/>
|
||||
</g>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="dropup-item">Trigger a build</span>
|
||||
</a>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
</li>
|
||||
|
||||
<aside class="dash-aside">
|
||||
<ul class="lastbuilds">
|
||||
{{lastbuild-tile repo=repo build=repo.default_branch.last_build}}
|
||||
</ul>
|
||||
</div>
|
||||
</div> --}}
|
||||
</aside>
|
||||
</div>
|
||||
|
|
4
app/templates/components/lastbuild-tile.hbs
Normal file
|
@ -0,0 +1,4 @@
|
|||
{{#link-to "build" repo.owner.login repo.name build.id}}
|
||||
{{status-icon status=build.state}}
|
||||
<span class="label-align">#{{build.number}}</span>
|
||||
{{/link-to}}
|
|
@ -14,7 +14,7 @@
|
|||
{{else}}
|
||||
All organizations
|
||||
{{/if}}
|
||||
</span><span class="option-tofu"></span>
|
||||
</span><span class="option-arrow"></span>
|
||||
</a>
|
||||
{{/if}}
|
||||
<div class="option-dropdown {{if showFilter 'is-open'}}">
|
||||
|
|
|
@ -15,23 +15,13 @@
|
|||
<div class="row-item row-color">
|
||||
<div class="one-line">
|
||||
{{#link-to "build" ownerName repoName repo.default_branch.last_build.id}}
|
||||
<span class="icon">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-289 193 18 18" {{!-- style="enable-background:new -289 191 20 20;" --}} xml:space="preserve">
|
||||
<path fill="#A5ACAD" class="st0" d="M-272.4,198.4C-272.4,198.4-272.4,198.4-272.4,198.4l-3.4,0l0.3-3.3c0-0.3-0.2-0.6-0.5-0.6
|
||||
c-0.3,0-0.6,0.2-0.6,0.5l-0.3,3.4l-3.2,0l0.3-3.6c0-0.3-0.2-0.6-0.5-0.6c-0.3,0-0.6,0.2-0.6,0.5l-0.3,3.7l-3.2,0
|
||||
c-0.3,0-0.5,0.2-0.5,0.6c0,0.3,0.2,0.5,0.5,0.5c0,0,0,0,0,0l3.1,0l-0.2,2.9l-3.5,0c-0.3,0-0.5,0.2-0.5,0.6c0,0.3,0.2,0.5,0.5,0.5
|
||||
c0,0,0,0,0,0l3.4,0l-0.3,3.3c0,0.3,0.2,0.6,0.5,0.6c0,0,0,0,0,0c0.3,0,0.5-0.2,0.5-0.5l0.3-3.4l3.2,0l-0.3,3.6
|
||||
c0,0.3,0.2,0.6,0.5,0.6c0,0,0,0,0,0c0.3,0,0.5-0.2,0.5-0.5l0.3-3.7l3.2,0c0.3,0,0.5-0.2,0.5-0.6c0-0.3-0.2-0.5-0.5-0.5c0,0,0,0,0,0
|
||||
l-3.1,0l0.2-2.9l3.5,0c0.3,0,0.5-0.2,0.5-0.6C-271.8,198.7-272.1,198.4-272.4,198.4z M-277.2,202.4l-3.2,0l0.2-2.9l3.2,0
|
||||
L-277.2,202.4z"/>x
|
||||
</svg>
|
||||
<span class="icon-hash">
|
||||
</span>
|
||||
<span class="label-align">{{repo.default_branch.last_build.number}}</span>
|
||||
{{/link-to}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row-item fade-out">
|
||||
<div class="one-line">
|
||||
{{request-icon event=repo.default_branch.last_build.event_type}}
|
||||
|
@ -42,31 +32,7 @@
|
|||
<div class="row-item">
|
||||
<div class="one-line">
|
||||
<a href="{{repo.default_branch.last_build.commit.compare_url}}">
|
||||
<span class="icon">
|
||||
<svg x="0px" y="0px" viewBox="2 0 20 20" xml:space="preserve">
|
||||
<g id="Commit">
|
||||
<path fill="#A7AEAE" d="M7.8,17.5c-0.3,0-0.5-0.2-0.5-0.5l0-1c-0.4,0-1,0.1-1.4-0.1c-0.4-0.1-1.3-0.5-1.8-1.7
|
||||
c-0.1-0.2-0.3-0.4-0.4-0.6c-0.1-0.1-0.2-0.3-0.3-0.4C3,12.8,3,12,3.3,11.5c0.3-0.4,0.7-0.5,1.2-0.3c0.7,0.2,1.1,0.9,1.4,1.3
|
||||
c0.1,0.1,0.1,0.2,0.2,0.2c0.4,0.4,1,0.3,1.4,0.1c0.1-0.1,0.2-0.2,0.3-0.3c-0.1,0-0.1,0-0.2,0c-0.7-0.1-1.3-0.4-1.9-0.7
|
||||
c-0.2-0.2-0.6-0.4-0.8-0.7c-0.3-0.3-0.5-0.7-0.7-1.2C4.1,9.4,4,9,3.9,8.5c0-0.4-0.1-0.9,0-1.4C4,6.5,4.2,6,4.5,5.5
|
||||
c0.1-0.1,0.1-0.2,0.2-0.3c0,0,0-0.1,0-0.1c-0.1-0.3-0.1-0.6-0.1-1c0-0.4,0.1-0.8,0.3-1.2C5,2.6,5.2,2.5,5.5,2.5
|
||||
c0.3,0,0.8,0.1,1.2,0.3c0.4,0.2,0.8,0.4,1.2,0.7c0.5-0.1,1-0.2,1.6-0.2c0.4,0,1.6,0,2,0c0.5,0,1,0.1,1.4,0.2l0.2-0.1
|
||||
c0.2-0.1,0.5-0.3,0.7-0.4c0.4-0.2,0.7-0.3,1.1-0.3c0.1,0,0.2,0,0.3,0c0.3,0,0.5,0.1,0.6,0.4c0.2,0.6,0.4,1.2,0.2,2l0,0.1
|
||||
c0,0.1,0,0.2-0.1,0.3c0.5,0.6,0.7,1.3,0.8,2.1c0,0.3,0,0.6,0,0.9c0,0.5-0.1,1-0.2,1.4c-0.2,0.5-0.4,1-0.7,1.4
|
||||
c-0.3,0.4-0.7,0.6-1,0.8c-0.6,0.3-1.2,0.6-1.8,0.7c0.2,0.4,0.3,0.8,0.3,1.3c0,0,0,0,0,0c0,0.8,0,3.2,0,3.2c0,0.3-0.2,0.5-0.5,0.5
|
||||
L7.8,17.5L7.8,17.5z M7.8,15.1c0.1,0,0.2,0,0.3,0.1c0.1,0.1,0.2,0.2,0.2,0.3l0,1l4.2,0c0-0.7,0-2.1,0-2.7c0-0.4-0.1-0.7-0.2-1
|
||||
c-0.1-0.2-0.1-0.3-0.2-0.3l0.3-0.4l0,0L12,12.5c-0.1-0.1-0.1-0.3-0.1-0.5c0.1-0.2,0.2-0.3,0.4-0.3l0.3,0c0.7-0.1,1.3-0.3,1.9-0.7
|
||||
c0.3-0.2,0.6-0.4,0.7-0.6c0.2-0.3,0.4-0.6,0.5-1C15.9,9,15.9,8.6,16,8.1c0-0.2,0-0.5,0-0.7c-0.1-0.7-0.3-1.2-0.7-1.7
|
||||
c-0.2-0.2-0.2-0.4-0.1-0.6c0-0.1,0.1-0.2,0.1-0.3l0-0.1c0.1-0.4,0-0.8-0.1-1.2c0,0,0,0-0.1,0c-0.2,0-0.5,0.1-0.7,0.2
|
||||
c-0.2,0.1-0.4,0.2-0.7,0.4l-0.4,0.2c-0.1,0.1-0.3,0.1-0.4,0.1c-0.5-0.1-0.9-0.2-1.4-0.2c-0.4,0-1.5,0-1.9,0C9,4.1,8.5,4.2,8,4.4
|
||||
c-0.1,0-0.3,0-0.5-0.1C7.1,4,6.7,3.8,6.3,3.6C6.1,3.5,5.9,3.5,5.7,3.5C5.6,3.7,5.6,4,5.6,4.2c0,0.3,0,0.5,0.1,0.7
|
||||
c0,0.1,0,0.1,0.1,0.2c0.1,0.2,0,0.4-0.1,0.5L5.5,5.8C5.5,5.9,5.4,6,5.3,6.1C5.1,6.4,4.9,6.8,4.8,7.3c-0.1,0.4,0,0.8,0,1.1
|
||||
c0,0.4,0.1,0.8,0.2,1.2c0.1,0.4,0.3,0.7,0.5,0.9C5.8,10.7,6,10.9,6.2,11c0.5,0.3,1,0.5,1.6,0.6c0.2,0,0.7,0.1,0.7,0.1
|
||||
c0.1,0,0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.4c0,0.1-0.3,1-0.9,1.4c-0.7,0.4-1.8,0.5-2.5-0.3c-0.1-0.1-0.2-0.2-0.3-0.3
|
||||
c-0.2-0.3-0.6-0.8-1-1c-0.1,0-0.1,0-0.1,0c0,0,0,0-0.1,0.1c0,0.2,0,0.4,0.1,0.6c0.1,0.1,0.2,0.2,0.3,0.4c0.2,0.3,0.4,0.5,0.5,0.8
|
||||
c0.4,0.8,1,1.1,1.2,1.2C6.6,15.2,7.4,15.1,7.8,15.1C7.7,15.1,7.7,15.1,7.8,15.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
<span class="icon-github">
|
||||
</span>
|
||||
<span class="label-align">{{format-sha repo.default_branch.last_build.commit.sha}}</span>
|
||||
</a>
|
||||
|
@ -75,21 +41,7 @@
|
|||
|
||||
<div class="row-item fade-out">
|
||||
<div class="one-line">
|
||||
<span class="icon">
|
||||
<svg viewBox="0 0 20 20">
|
||||
<g id="Cal">
|
||||
<path fill="#A7AEAE" d="M16.7,2.5H3.3C3,2.5,2.8,2.7,2.8,3V17c0,0.3,0.2,0.5,0.5,0.5h13.4c0.3,0,0.5-0.2,0.5-0.5V3
|
||||
C17.2,2.7,17,2.5,16.7,2.5z M16.2,3.4v3.1H3.8V3.4H16.2z M3.8,16.6v-9h12.5v9H3.8z"/>
|
||||
<path fill="#A7AEAE" d="M8.7,13.4c-0.1,0-0.3,0-0.4,0c0.2-0.2,0.4-0.4,0.5-0.6c0.2-0.2,0.3-0.4,0.5-0.6c0.1-0.2,0.2-0.4,0.3-0.6
|
||||
c0.1-0.2,0.1-0.4,0.1-0.6c0-0.2,0-0.4-0.1-0.6c-0.1-0.2-0.2-0.3-0.3-0.4C9.2,10,9.1,9.9,8.9,9.8C8.7,9.7,8.5,9.7,8.3,9.7
|
||||
C8,9.7,7.7,9.8,7.5,9.9C7.2,10,7,10.2,6.8,10.4L7.3,11c0.1-0.1,0.2-0.2,0.4-0.3c0.1-0.1,0.3-0.1,0.4-0.1c0.2,0,0.4,0.1,0.5,0.2
|
||||
c0.1,0.1,0.2,0.3,0.2,0.5c0,0.2,0,0.3-0.1,0.5c-0.1,0.2-0.2,0.4-0.4,0.6c-0.2,0.2-0.4,0.4-0.6,0.7c-0.2,0.2-0.5,0.5-0.8,0.8v0.6
|
||||
H10v-0.9H9.1C9,13.4,8.8,13.4,8.7,13.4z"/>
|
||||
<path fill="#A7AEAE" d="M10.6,10.7h2c-0.2,0.3-0.4,0.6-0.5,0.8c-0.1,0.3-0.3,0.6-0.4,0.8c-0.1,0.3-0.2,0.6-0.2,0.9
|
||||
c0,0.3-0.1,0.7-0.1,1h1c0-0.4,0-0.8,0.1-1.2c0-0.3,0.1-0.7,0.2-0.9c0.1-0.3,0.2-0.6,0.4-0.9c0.2-0.3,0.4-0.6,0.6-0.9V9.8h-3.1
|
||||
V10.7z"/>
|
||||
</g>
|
||||
</svg>
|
||||
<span class="icon-calendar">
|
||||
</span>
|
||||
<span class="build-status label-align">{{repo.default_branch.last_build.state}}</span>
|
||||
<span class="finished-at label-align">{{format-time repo.default_branch.last_build.finished_at}}</span>
|
||||
|
|
|
@ -8,35 +8,14 @@
|
|||
{{/if}}
|
||||
|
||||
<p class="tile-title float-right">
|
||||
<span class="icon">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-289 191 20 20" style="enable-background:new -289 191 20 20;" xml:space="preserve">
|
||||
<path fill="#A5ACAD" class="st0" d="M-272.4,198.4C-272.4,198.4-272.4,198.4-272.4,198.4l-3.4,0l0.3-3.3c0-0.3-0.2-0.6-0.5-0.6
|
||||
c-0.3,0-0.6,0.2-0.6,0.5l-0.3,3.4l-3.2,0l0.3-3.6c0-0.3-0.2-0.6-0.5-0.6c-0.3,0-0.6,0.2-0.6,0.5l-0.3,3.7l-3.2,0
|
||||
c-0.3,0-0.5,0.2-0.5,0.6c0,0.3,0.2,0.5,0.5,0.5c0,0,0,0,0,0l3.1,0l-0.2,2.9l-3.5,0c-0.3,0-0.5,0.2-0.5,0.6c0,0.3,0.2,0.5,0.5,0.5
|
||||
c0,0,0,0,0,0l3.4,0l-0.3,3.3c0,0.3,0.2,0.6,0.5,0.6c0,0,0,0,0,0c0.3,0,0.5-0.2,0.5-0.5l0.3-3.4l3.2,0l-0.3,3.6
|
||||
c0,0.3,0.2,0.6,0.5,0.6c0,0,0,0,0,0c0.3,0,0.5-0.2,0.5-0.5l0.3-3.7l3.2,0c0.3,0,0.5-0.2,0.5-0.6c0-0.3-0.2-0.5-0.5-0.5c0,0,0,0,0,0
|
||||
l-3.1,0l0.2-2.9l3.5,0c0.3,0,0.5-0.2,0.5-0.6C-271.8,198.7-272.1,198.4-272.4,198.4z M-277.2,202.4l-3.2,0l0.2-2.9l3.2,0
|
||||
L-277.2,202.4z"/>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="icon-hash"></span>
|
||||
{{#if job.repo.slug}}
|
||||
{{#link-to "job" job.repo job}}<span class="label-align">{{job.number}}</span>{{/link-to}}
|
||||
{{/if}}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<span class="icon">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-289 191 20 20" style="enable-background:new -289 191 20 20;" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#A5ACAD" class="st0" d="M-278.9,207.7c-3.7,0-6.7-3-6.7-6.7s3-6.7,6.7-6.7s6.7,3,6.7,6.7S-275.2,207.7-278.9,207.7z M-278.9,195.4
|
||||
c-3.1,0-5.6,2.5-5.6,5.6s2.5,5.6,5.6,5.6c3.1,0,5.6-2.5,5.6-5.6S-275.8,195.4-278.9,195.4z"/>
|
||||
<path fill="#A5ACAD" class="st0" d="M-276.7,203.1c-0.1,0-0.2,0-0.3-0.1l-2.4-1.5c-0.2-0.1-0.2-0.3-0.2-0.4v-3.8c0-0.3,0.2-0.5,0.5-0.5
|
||||
s0.5,0.2,0.5,0.5v3.5l2.1,1.4c0.2,0.2,0.3,0.5,0.2,0.7C-276.4,203-276.5,203.1-276.7,203.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
</span>
|
||||
<span class="icon-clock"></span>
|
||||
<span class="label-align">Queued</span>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<div class="tile {{repo.lastBuildState}}">
|
||||
<h2 class="tile-title {{repo.lastBuildState}}">
|
||||
{{#if repo.slug}}
|
||||
{{#link-to "repo" repo}}
|
||||
{{status-icon status=repo.lastBuildState}}
|
||||
{{#link-to "repo" repo}}
|
||||
<span class="label-align">{{repo.slug}}</span>
|
||||
{{/link-to}}
|
||||
{{/if}}
|
||||
|
@ -11,8 +11,8 @@
|
|||
{{#if repo.slug}}
|
||||
{{#if repo.lastBuildId}}
|
||||
<p class="tile-title float-right {{repo.lastBuildState}}">
|
||||
<span class="icon-hash"></span>
|
||||
{{#link-to "build" repo repo.lastBuildId}}
|
||||
<span class="icon-hash"></span>
|
||||
<span class="label-align">{{repo.lastBuildNumber}}</span>
|
||||
{{/link-to}}
|
||||
</p>
|
||||
|
|
|
@ -1,15 +1,35 @@
|
|||
{{#if isEmpty}}
|
||||
<svg viewBox="0 0 20 20"><path fill="#A7AEAE" d="M16.9 9.4h-3.5c-.3-1.6-1.7-2.8-3.4-2.8S6.9 7.8 6.6 9.4H3.1c-.3 0-.6.3-.6.6s.3.6.6.6h3.5c.3 1.6 1.7 2.8 3.4 2.8s3.1-1.2 3.4-2.8h3.5c.3 0 .6-.3.6-.6s-.3-.6-.6-.6zM10 12.2c-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2 0 1.2-1 2.2-2.2 2.2z"/></svg>
|
||||
<svg version="1.1" id="icon-nobuilds" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15" xml:space="preserve">
|
||||
<g id="nobuilds">
|
||||
<circle cx="7.5" cy="7.5" r="7"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{else}}
|
||||
{{#if isPush}}
|
||||
<svg viewBox="0 0 20 20"><path fill="#A7AEAE" d="M16.9 9.4h-3.5c-.3-1.6-1.7-2.8-3.4-2.8S6.9 7.8 6.6 9.4H3.1c-.3 0-.6.3-.6.6s.3.6.6.6h3.5c.3 1.6 1.7 2.8 3.4 2.8s3.1-1.2 3.4-2.8h3.5c.3 0 .6-.3.6-.6s-.3-.6-.6-.6zM10 12.2c-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2 1.2 0 2.2 1 2.2 2.2 0 1.2-1 2.2-2.2 2.2z"/></svg>
|
||||
<svg version="1.1" id="icon-push" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15" xml:space="preserve">
|
||||
<g id="push">
|
||||
<circle cx="7.505" cy="7.354" r="2.854"/>
|
||||
<line x1="14.5" y1="7.354" x2="10.349" y2="7.354"/>
|
||||
<line x1="4.651" y1="7.354" x2="0.5" y2="7.354"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{/if}}
|
||||
|
||||
{{#if isPR}}
|
||||
<svg viewBox="0 0 20 20"><g fill="#A7AEAE"><path d="M8 4.5C8 3.1 6.9 2 5.5 2S3 3.1 3 4.5c0 1.1.8 2.1 1.8 2.4v6.5c-1 .3-1.8 1.2-1.8 2.4 0 1.4 1.1 2.5 2.5 2.5S8 17 8 15.7c0-1.1-.8-2.1-1.8-2.4V6.8C7.2 6.6 8 5.6 8 4.5zm-3.7 0c0-.6.5-1.2 1.2-1.2s1.2.5 1.2 1.2-.6 1.1-1.2 1.1-1.2-.5-1.2-1.1zm2.4 11.2c0 .6-.5 1.2-1.2 1.2s-1.2-.5-1.2-1.2.5-1.2 1.2-1.2 1.2.5 1.2 1.2zM15.1 13.3v-6c0-1-.3-1.9-.9-2.4-1-.9-2.4-.8-2.4-.8h-1l1-1c.3-.3.3-.7 0-.9s-.7-.3-.9 0l-2 2c-.1 0-.2.1-.3.2v.4c0 .1.1.2.2.3.3.3.8.9 2 2 .1.1.3.2.5.2s.3-.1.5-.2c.3-.3.3-.7 0-.9l-1-1h1s.9 0 1.5.5c.3.3.5.8.5 1.5v6.1c-1 .3-1.8 1.2-1.8 2.4 0 1.4 1.1 2.5 2.5 2.5S17 17 17 15.7c0-1.2-.8-2.1-1.9-2.4zm-.6 3.5c-.6 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.2.5 1.2 1.2-.6 1.2-1.2 1.2z"/></g></svg>
|
||||
<svg version="1.1" id="icon-pullrequest" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 -1 16 17" xml:space="preserve">
|
||||
<g id="pullrequest">
|
||||
<circle cx="3.299" cy="2.344" r="1.699"/>
|
||||
<circle cx="3.299" cy="12.801" r="1.699"/>
|
||||
<circle cx="11.697" cy="12.801" r="1.699"/>
|
||||
<line x1="3.299" y1="4.044" x2="3.299" y2="11.102"/>
|
||||
<path d="M8.752,0.5c0,0-1.946,1.946-1.946,1.975h2.396c0,0,2.483-0.152,2.483,2.462s0,6.143,0,6.143"/>
|
||||
<path d="M8.752,4.436c0,0-1.946-1.946-1.946-1.975"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{/if}}
|
||||
|
||||
{{#if isAPI}}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170.08 170.08"><path fill="#A7AEAE" d="M137.765 132.663H32.315c-6.803 0-12.756-5.953-12.756-13.607V72.284c0-6.803 5.952-13.606 12.755-13.606h2.55v-8.504c0-6.803 5.954-13.606 12.757-13.606h21.26c6.803 0 12.756 5.953 12.756 13.606v8.504h5.103v-8.504c0-6.803 5.954-13.606 12.757-13.606h22.11c6.804 0 12.756 5.953 12.756 13.606v8.504h4.252c6.804 0 12.756 5.953 12.756 13.606v47.622c-1.7 6.804-6.803 12.757-13.605 12.757zm-105.45-62.93s-1.7.85-1.7 2.55v47.623s0 2.552 1.7 2.552h105.45s1.7-.85 1.7-2.552V72.284s0-2.55-1.7-2.55H127.56c-3.4 0-5.102-2.552-5.102-5.104V50.174s0-2.55-1.7-2.55h-22.11s-1.7.85-1.7 2.55V63.78c0 3.4-2.553 5.102-5.105 5.102H75.686c-3.4 0-5.103-2.55-5.103-5.102V50.174s0-2.55-1.7-2.55h-21.26s-1.702.85-1.702 2.55V63.78c0 3.4-2.55 5.102-5.1 5.102h-8.505v.85z"/></svg>
|
||||
<svg version="1.1" id="icon-api" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15 15" xml:space="preserve">
|
||||
<g><path id="api" d="M13.676,5.327h-1.153V3.156c0-0.494-0.329-0.906-0.824-0.906H9.147c-0.412,0-0.824,0.412-0.824,0.906 v2.171H6.429V3.156c0-0.494-0.329-0.906-0.824-0.906h-2.47c-0.412,0-0.824,0.412-0.824,0.906v2.171H1.324C0.912,5.327,0.5,5.739,0.5,6.233v5.076c0,0.494,0.329,0.906,0.824,0.906h12.353c0.412,0,0.824-0.412,0.824-0.906V6.233C14.5,5.739,14.171,5.327,13.676,5.327z"/></g> </svg>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
|
|
@ -10,17 +10,7 @@
|
|||
{{/if}}
|
||||
|
||||
<p class="tile-title float-right">
|
||||
<span class="icon">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-289 191 20 20" style="enable-background:new -289 191 20 20;" xml:space="preserve">
|
||||
<path fill="#A5ACAD" class="st0" d="M-272.4,198.4C-272.4,198.4-272.4,198.4-272.4,198.4l-3.4,0l0.3-3.3c0-0.3-0.2-0.6-0.5-0.6
|
||||
c-0.3,0-0.6,0.2-0.6,0.5l-0.3,3.4l-3.2,0l0.3-3.6c0-0.3-0.2-0.6-0.5-0.6c-0.3,0-0.6,0.2-0.6,0.5l-0.3,3.7l-3.2,0
|
||||
c-0.3,0-0.5,0.2-0.5,0.6c0,0.3,0.2,0.5,0.5,0.5c0,0,0,0,0,0l3.1,0l-0.2,2.9l-3.5,0c-0.3,0-0.5,0.2-0.5,0.6c0,0.3,0.2,0.5,0.5,0.5
|
||||
c0,0,0,0,0,0l3.4,0l-0.3,3.3c0,0.3,0.2,0.6,0.5,0.6c0,0,0,0,0,0c0.3,0,0.5-0.2,0.5-0.5l0.3-3.4l3.2,0l-0.3,3.6
|
||||
c0,0.3,0.2,0.6,0.5,0.6c0,0,0,0,0,0c0.3,0,0.5-0.2,0.5-0.5l0.3-3.7l3.2,0c0.3,0,0.5-0.2,0.5-0.6c0-0.3-0.2-0.5-0.5-0.5c0,0,0,0,0,0
|
||||
l-3.1,0l0.2-2.9l3.5,0c0.3,0,0.5-0.2,0.5-0.6C-271.8,198.7-272.1,198.4-272.4,198.4z M-277.2,202.4l-3.2,0l0.2-2.9l3.2,0
|
||||
L-277.2,202.4z"/>
|
||||
</svg>
|
||||
<span class="icon-hash">
|
||||
</span>
|
||||
{{#if job.repo.slug}}
|
||||
{{#link-to "job" job.repo job}}<span class="label-align">{{job.number}}</span>{{/link-to}}
|
||||
|
@ -28,16 +18,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
<span class="icon">
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-289 191 20 20" style="enable-background:new -289 191 20 20;" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#A5ACAD" class="st0" d="M-278.9,207.7c-3.7,0-6.7-3-6.7-6.7s3-6.7,6.7-6.7s6.7,3,6.7,6.7S-275.2,207.7-278.9,207.7z M-278.9,195.4
|
||||
c-3.1,0-5.6,2.5-5.6,5.6s2.5,5.6,5.6,5.6c3.1,0,5.6-2.5,5.6-5.6S-275.8,195.4-278.9,195.4z"/>
|
||||
<path fill="#A5ACAD" class="st0" d="M-276.7,203.1c-0.1,0-0.2,0-0.3-0.1l-2.4-1.5c-0.2-0.1-0.2-0.3-0.2-0.4v-3.8c0-0.3,0.2-0.5,0.5-0.5
|
||||
s0.5,0.2,0.5,0.5v3.5l2.1,1.4c0.2,0.2,0.3,0.5,0.2,0.7C-276.4,203-276.5,203.1-276.7,203.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
<span class="icon-clock">
|
||||
</span>
|
||||
<span class="label-align">
|
||||
Duration:
|
||||
|
|
|
@ -1,54 +1,40 @@
|
|||
|
||||
{{#if isEmpty}}
|
||||
<svg version="1.1" id="Layer_1" viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="NoBuild">
|
||||
<g>
|
||||
<path fill="#A7AEAE" d="M10,16.2c-3.4,0-6.1-2.8-6.1-6.2S6.6,3.8,10,3.8s6.1,2.8,6.1,6.2S13.4,16.2,10,16.2z M10,5.2
|
||||
c-2.7,0-4.9,2.2-4.9,4.8s2.2,4.8,4.9,4.8s4.9-2.2,4.9-4.8S12.7,5.2,10,5.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<svg version="1.1" id="icon-nobuilds" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-1 -1 17 17" xml:space="preserve">
|
||||
<g id="nobuilds">
|
||||
<circle cx="7.5" cy="7.5" r="7"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{else}}
|
||||
{{#if hasPassed}}
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Passed">
|
||||
<path fill="#A7AEAE" d="M9.6,14.4c-0.1,0-0.3-0.1-0.4-0.1l-4-3.3c-0.3-0.2-0.3-0.6-0.1-0.9S5.8,9.8,6.1,10l3.4,2.8l4.9-7.5
|
||||
C14.6,5,15,4.9,15.3,5.1c0.3,0.2,0.4,0.6,0.2,0.9l-5.3,8.1C10.1,14.3,9.9,14.4,9.6,14.4C9.7,14.4,9.7,14.4,9.6,14.4z"/>
|
||||
</g>
|
||||
<svg version="1.1" id="icon-passed" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-1 -1 17 16" xml:space="preserve">
|
||||
<g><polyline style="stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;"id="passed" points="14.5,1.5 6.499,13.716 0.5,8.78 "/></g>
|
||||
</svg>
|
||||
{{/if}}
|
||||
|
||||
{{#if hasFailed}}
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Failed">
|
||||
<path fill="#A7AEAE" d="M10.9,10l3.9-3.9c0.2-0.2,0.2-0.6,0-0.9c-0.2-0.2-0.6-0.2-0.9,0L10,9.1L6.1,5.2c-0.2-0.2-0.6-0.2-0.9,0
|
||||
c-0.2,0.2-0.2,0.6,0,0.9L9.1,10l-3.9,3.9c-0.2,0.2-0.2,0.6,0,0.9C5.3,14.9,5.5,15,5.6,15s0.3-0.1,0.4-0.2l3.9-3.9l3.9,3.9
|
||||
c0.1,0.1,0.3,0.2,0.4,0.2c0.2,0,0.3-0.1,0.4-0.2c0.2-0.2,0.2-0.6,0-0.9L10.9,10z"/>
|
||||
</g>
|
||||
<svg version="1.1" id="icon-failed" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-1 -1 17 17" xml:space="preserve">
|
||||
<g id="failed">
|
||||
<line x1="0.5" y1="0.5" x2="14.5" y2="14.5"/>
|
||||
<line x1="14.5" y1="0.5" x2="0.5" y2="14.5"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{/if}}
|
||||
|
||||
{{#if wasCanceled}}
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Cancelled">
|
||||
<path fill="#A7AEAE" d="M10,3.3c-3.7,0-6.6,3-6.6,6.7s3,6.7,6.6,6.7s6.6-3,6.6-6.7S13.7,3.3,10,3.3z M15.4,10
|
||||
c0,1.3-0.5,2.5-1.3,3.4L6.5,6C7.5,5.2,8.7,4.7,10,4.7C13,4.7,15.4,7,15.4,10z M4.6,10c0-1.2,0.4-2.2,1-3.1l7.5,7.4
|
||||
c-0.9,0.7-2,1-3.2,1C7,15.3,4.6,13,4.6,10z"/>
|
||||
</g>
|
||||
<svg version="1.1" id="icon-canceled" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-1 -1 17 17" xml:space="preserve">
|
||||
<g id="canceled">
|
||||
<line x1="2.542" y1="2.938" x2="12.306" y2="12.551"/>
|
||||
<circle cx="7.5" cy="7.5" r="7"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{/if}}
|
||||
|
||||
{{#if hasErrored}}
|
||||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-519 391 20 20" style="enable-background:new -518 391 20 20;" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#A5ACAD" d="M-508.9,403.2c-0.3,0-0.6-0.3-0.6-0.6V395c0-0.3,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6v7.6
|
||||
C-508.2,402.9-508.5,403.2-508.9,403.2z"/>
|
||||
<circle fill="#A5ACAD" cx="-508.9" cy="406.5" r="1.2"/>
|
||||
</g>
|
||||
<svg version="1.1" id="icon-errored" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-1 -1 16 17" xml:space="preserve">
|
||||
<g id="errored">
|
||||
<circle cx="7.5" cy="13.986" r="0.97"/>
|
||||
<line x1="7.5" y1="0.5" x2="7.5" y2="10.646"/>
|
||||
</g>
|
||||
</svg>
|
||||
{{/if}}
|
||||
|
||||
|
@ -58,4 +44,4 @@
|
|||
<span class="circle"></span>
|
||||
</div>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
|
|
@ -11,30 +11,10 @@
|
|||
</header>
|
||||
|
||||
<div class="tabs--owner">
|
||||
{{!-- <nav class="tabnav tabnav--owner row" role="tablist">
|
||||
<ul class="tab">
|
||||
<li role="presentational">{{#link-to 'owner.repositories' owner.login}}All Repositories{{/link-to}}</li>
|
||||
<li role="presentational">{{#link-to 'owner.running' owner.login}}Running Builds{{/link-to}}</li>
|
||||
<li role="presentational"><a href="#" title="" role="tab">Members</a></li>
|
||||
</ul>
|
||||
</nav> --}}
|
||||
|
||||
<div class="tabbody">
|
||||
<section role="tabpanel">
|
||||
{{outlet}}
|
||||
</section>
|
||||
|
||||
{{!-- <section role="tabpanel">
|
||||
<ul class="memberlist">
|
||||
<li class="columns small-6 large-4">
|
||||
<img src="//placehold.it/50x50" alt="">
|
||||
<div class="memberlist-names">
|
||||
<h2>Firstname Lastname</h2>
|
||||
<p>githubhandle</p>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</section> --}}
|
||||
</div>
|
||||
</div>
|
||||
{{/travis-layout}}
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="170.08px" height="170.08px" viewBox="0 0 170.08 170.08" enable-background="new 0 0 170.08 170.08" xml:space="preserve">
|
||||
<g id="API">
|
||||
<path fill="#A7AEAE" d="M137.765,132.663H32.315c-6.803,0-12.756-5.953-12.756-13.607V72.284c0-6.803,5.953-13.606,12.756-13.606
|
||||
h2.551v-8.504c0-6.803,5.953-13.606,12.756-13.606h21.26c6.803,0,12.756,5.953,12.756,13.606v8.504h5.103v-8.504
|
||||
c0-6.803,5.953-13.606,12.756-13.606h22.11c6.804,0,12.756,5.953,12.756,13.606v8.504h4.252c6.804,0,12.756,5.953,12.756,13.606
|
||||
v47.622C149.671,126.71,144.567,132.663,137.765,132.663z M32.315,69.733c0,0-1.701,0.85-1.701,2.551v47.622
|
||||
c0,0,0,2.552,1.701,2.552h105.449c0,0,1.701-0.851,1.701-2.552V72.284c0,0,0-2.551-1.701-2.551H127.56
|
||||
c-3.4,0-5.102-2.551-5.102-5.103V50.174c0,0,0-2.551-1.701-2.551h-22.11c0,0-1.7,0.85-1.7,2.551V63.78
|
||||
c0,3.401-2.552,5.102-5.104,5.102H75.686c-3.401,0-5.103-2.551-5.103-5.102V50.174c0,0,0-2.551-1.701-2.551h-21.26
|
||||
c0,0-1.701,0.85-1.701,2.551V63.78c0,3.401-2.551,5.102-5.102,5.102h-8.504V69.733z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.1 15"><style>.st0{fill:#f1f1f1;}</style><path id="downarrow" class="st0" d="M12 8.5c-.2-.2-.6-.2-.8 0L6.7 13V.6c0-.3-.3-.6-.6-.6-.4 0-.6.3-.6.6V13L1 8.5c-.2-.2-.6-.2-.8 0-.2.2-.2.6 0 .8l5.5 5.5c.1.1.2.2.4.2s.3-.1.4-.2L12 9.4c.2-.3.2-.7 0-.9z"/></svg>
|
Before Width: | Height: | Size: 306 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7.4 15"><style>.st0{fill:#949899;}</style><path class="st0" d="M.6 15c-.2 0-.3-.1-.4-.2-.3-.2-.3-.6-.1-.9l5.7-6.5L.2 1.1C0 .8 0 .4.2.2c.3-.2.7-.2.9 0L7.2 7c.2.2.2.6 0 .8l-6.1 6.9c-.1.2-.3.3-.5.3z" id="tabarrow"/></svg>
|
Before Width: | Height: | Size: 271 B |
|
@ -1,22 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="12.537px" height="20px" viewBox="0 0 12.537 20" enable-background="new 0 0 12.537 20" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#3CA85B" d="M0.989,18.732l0.92-2.247l3.926,0.663V20h0.868l-0.001-2.852l3.926-0.663l0.92,2.247h0.989L8.167,8.078
|
||||
H7.183l0.004,0.011H5.351l0.004-0.011H4.37L0,18.732H0.989z M6.702,16.288l-0.003-3.877l2.461,0.492l1.131,2.759L6.702,16.288z
|
||||
M2.246,15.662l1.131-2.759l2.459-0.492l-0.001,3.877L2.246,15.662z M8.794,12.015l-2.095-0.483L6.698,8.92h0.827L8.794,12.015z
|
||||
M5.836,8.92v2.612l-2.093,0.482L5.012,8.92H5.836z"/>
|
||||
<path fill="#3CA85B" d="M10.035,8.32l0.606,0.606c2.267-2.355,2.263-6.58-0.016-8.927l-0.591,0.593
|
||||
C11.992,2.781,11.99,6.115,10.035,8.32z"/>
|
||||
<path fill="#3CA85B" d="M8.631,1.995C9.823,3.41,9.824,5.496,8.635,6.922l0.606,0.606c1.522-1.766,1.524-4.394,0-6.144L8.631,1.995
|
||||
z"/>
|
||||
<path fill="#3CA85B" d="M1.855,8.927L2.462,8.32C0.507,6.115,0.506,2.781,2.463,0.593L1.872,0C-0.407,2.347-0.41,6.571,1.855,8.927
|
||||
z"/>
|
||||
<path fill="#3CA85B" d="M3.257,1.385c-1.524,1.75-1.523,4.378-0.001,6.144l0.606-0.606C2.674,5.496,2.674,3.41,3.866,1.995
|
||||
L3.257,1.385z"/>
|
||||
<path fill="#3CA85B" d="M6.246,6.437c1.082,0,1.962-0.88,1.962-1.964c0-1.085-0.88-1.964-1.962-1.964
|
||||
c-1.087,0-1.966,0.879-1.966,1.964C4.28,5.557,5.159,6.437,6.246,6.437z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,14 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="12.537px" height="20px" viewBox="0 0 12.537 20" enable-background="new 0 0 12.537 20" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#AEAEAE" d="M0.989,18.732l0.92-2.247l3.926,0.663V20h0.868l-0.001-2.852l3.926-0.663l0.92,2.247h0.989L8.167,8.078
|
||||
H7.183l0.004,0.011H5.351l0.004-0.011H4.37L0,18.732H0.989z M6.702,16.288l-0.003-3.877l2.461,0.492l1.131,2.759L6.702,16.288z
|
||||
M2.246,15.662l1.131-2.759l2.459-0.492l-0.001,3.877L2.246,15.662z M8.794,12.015l-2.095-0.483L6.698,8.92h0.827L8.794,12.015z
|
||||
M5.836,8.92v2.612l-2.093,0.482L5.012,8.92H5.836z"/>
|
||||
<path fill="#AEAEAE" d="M6.246,6.437c1.082,0,1.962-0.88,1.962-1.964c0-1.085-0.88-1.964-1.962-1.964
|
||||
c-1.087,0-1.966,0.879-1.966,1.964C4.28,5.557,5.159,6.437,6.246,6.437z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,22 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
width="12.537px" height="20px" viewBox="0 0 12.537 20" enable-background="new 0 0 12.537 20" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#DB4141" d="M0.989,18.732l0.92-2.247l3.926,0.663V20h0.868l-0.001-2.852l3.926-0.663l0.92,2.247h0.989L8.167,8.078
|
||||
H7.183l0.004,0.011H5.351l0.004-0.011H4.37L0,18.732H0.989z M6.702,16.288l-0.003-3.877l2.461,0.492l1.131,2.759L6.702,16.288z
|
||||
M2.246,15.662l1.131-2.759l2.459-0.492l-0.001,3.877L2.246,15.662z M8.794,12.015l-2.095-0.483L6.698,8.92h0.827L8.794,12.015z
|
||||
M5.836,8.92v2.612l-2.093,0.482L5.012,8.92H5.836z"/>
|
||||
<path fill="#DB4141" d="M10.035,8.32l0.606,0.606c2.267-2.355,2.263-6.58-0.016-8.927l-0.591,0.593
|
||||
C11.992,2.781,11.99,6.115,10.035,8.32z"/>
|
||||
<path fill="#DB4141" d="M8.631,1.995C9.823,3.41,9.824,5.496,8.635,6.922l0.606,0.606c1.522-1.766,1.524-4.394,0-6.144L8.631,1.995
|
||||
z"/>
|
||||
<path fill="#DB4141" d="M1.855,8.927L2.462,8.32C0.507,6.115,0.506,2.781,2.463,0.593L1.872,0C-0.407,2.347-0.41,6.571,1.855,8.927
|
||||
z"/>
|
||||
<path fill="#DB4141" d="M3.257,1.385c-1.524,1.75-1.523,4.378-0.001,6.144l0.606-0.606C2.674,5.496,2.674,3.41,3.866,1.995
|
||||
L3.257,1.385z"/>
|
||||
<path fill="#DB4141" d="M6.246,6.437c1.082,0,1.962-0.88,1.962-1.964c0-1.085-0.88-1.964-1.962-1.964
|
||||
c-1.087,0-1.966,0.879-1.966,1.964C4.28,5.557,5.159,6.437,6.246,6.437z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,14 +0,0 @@
|
|||
<svg x="0px" y="0px" viewBox="0 0 20 20" xml:space="preserve" enable-background="new 0 0 20 20">
|
||||
<g id="Build">
|
||||
<path fill="#A7AEAE" d="M15.2,15.3c-0.4,0-0.7-0.1-1-0.4c-0.4-0.3-0.6-0.8-0.6-1.2c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5
|
||||
c0,0.2,0.1,0.4,0.2,0.5c0.1,0.1,0.3,0.2,0.5,0.1c0.2,0,0.4-0.2,0.5-0.5c0.1-0.3-0.1-0.6-0.4-0.7c-0.4-0.2-0.7-0.6-0.7-1.1V8.7
|
||||
c0-0.3,0.2-0.5,0.5-0.5s0.5,0.2,0.5,0.5V12c0,0,0,0.2,0.1,0.2c0.7,0.3,1.1,1,1,1.8c-0.1,0.6-0.6,1.2-1.3,1.3
|
||||
C15.3,15.3,15.3,15.3,15.2,15.3z"/>
|
||||
<path fill="#A7AEAE" d="M9.1,17.5C9.1,17.5,9.1,17.5,9.1,17.5H3.7c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5h1.7V8.9H3.4
|
||||
C2.5,8.9,2.5,7.1,2.5,7V6.6c0-0.5,0.3-0.9,0.7-1l2.2-0.8V3.3c0-0.2,0.1-0.5,0.3-0.6c0.2-0.2,0.4-0.2,0.7-0.2l1.5,0.3
|
||||
C9,3,9.6,3.1,9.6,3.7v1.2l7.1,0.9c0.5,0.1,0.8,0.5,0.8,0.9V7c0,0,0,1.8-0.9,1.8h-7v7.6h1.7c0.3,0,0.5,0.2,0.5,0.5
|
||||
c0,0.3-0.2,0.5-0.5,0.5H9.1C9.1,17.5,9.1,17.5,9.1,17.5z M6.4,16.5l2.2,0V8.9H6.4V16.5z M9.6,7.9h6.7c0.1-0.3,0.2-0.7,0.2-0.9
|
||||
V6.7L9.6,5.9V7.9z M6.4,7.9h2.2V5.7L8.1,5.7l-1.7,0V7.9z M3.6,7.9h1.8v-2l-2,0.7l0,0.4C3.5,7.2,3.5,7.6,3.6,7.9z M6.4,4.7h1.7
|
||||
l0.5,0.1V4c-0.1,0-0.4-0.1-0.9-0.2c0,0-0.1,0-0.1,0L6.4,3.5V4.7z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#A7AEAE" d="M16.7 2.5H3.3c-.3 0-.5.2-.5.5v14c0 .3.2.5.5.5h13.4c.3 0 .5-.2.5-.5V3c0-.3-.2-.5-.5-.5zm-.5.9v3.1H3.8V3.4h12.4zM3.8 16.6v-9h12.5v9H3.8z"/><path fill="#A7AEAE" d="M8.7 13.4h-.4c.2-.2.4-.4.5-.6.2-.2.3-.4.5-.6l.3-.6c.1-.2.1-.4.1-.6 0-.2 0-.4-.1-.6-.1-.2-.2-.3-.3-.4-.1 0-.2-.1-.4-.2s-.4-.1-.6-.1c-.3 0-.6.1-.8.2-.3.1-.5.3-.7.5l.5.6c.1-.1.2-.2.4-.3.1-.1.3-.1.4-.1.2 0 .4.1.5.2.1.1.2.3.2.5s0 .3-.1.5-.2.4-.4.6c-.2.2-.4.4-.6.7l-.8.8v.6H10v-.9h-.9c-.1-.2-.3-.2-.4-.2zM10.6 10.7h2c-.2.3-.4.6-.5.8-.1.3-.3.6-.4.8-.1.3-.2.6-.2.9 0 .3-.1.7-.1 1h1c0-.4 0-.8.1-1.2 0-.3.1-.7.2-.9.1-.3.2-.6.4-.9l.6-.9v-.5h-3.1v.9z"/></svg>
|
Before Width: | Height: | Size: 692 B |
|
@ -1,8 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Cancelled">
|
||||
<path fill="#A7AEAE" d="M10,3.3c-3.7,0-6.6,3-6.6,6.7s3,6.7,6.6,6.7s6.6-3,6.6-6.7S13.7,3.3,10,3.3z M15.4,10
|
||||
c0,1.3-0.5,2.5-1.3,3.4L6.5,6C7.5,5.2,8.7,4.7,10,4.7C13,4.7,15.4,7,15.4,10z M4.6,10c0-1.2,0.4-2.2,1-3.1l7.5,7.4
|
||||
c-0.9,0.7-2,1-3.2,1C7,15.3,4.6,13,4.6,10z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 521 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-289 191 20 20"><style>.st0{fill:#A5ACAD;}</style><path class="st0" d="M-278.9 207.7c-3.7 0-6.7-3-6.7-6.7s3-6.7 6.7-6.7 6.7 3 6.7 6.7-3 6.7-6.7 6.7zm0-12.3c-3.1 0-5.6 2.5-5.6 5.6s2.5 5.6 5.6 5.6c3.1 0 5.6-2.5 5.6-5.6s-2.5-5.6-5.6-5.6z"/><path class="st0" d="M-276.7 203.1c-.1 0-.2 0-.3-.1l-2.4-1.5c-.2-.1-.2-.3-.2-.4v-3.8c0-.3.2-.5.5-.5s.5.2.5.5v3.5l2.1 1.4c.2.2.3.5.2.7-.1.1-.2.2-.4.2z"/></svg>
|
Before Width: | Height: | Size: 444 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 960 560"><path fill="#A7AEAE" d="M418.4 490c-8.4 0-14-5.6-14-14v-28c-11.2 0-28 2.8-39.2-2.8-11.2-2.8-36.4-14-50.4-47.6-2.8-5.6-8.4-11.2-11.2-16.8-2.8-2.8-5.6-8.4-8.4-11.2C284 358.4 284 336 292.4 322c8.4-11.2 19.6-14 33.6-8.4 19.6 5.6 30.8 25.2 39.2 36.4 2.8 2.8 2.8 5.6 5.6 5.6 11.2 11.2 28 8.4 39.2 2.8l8.4-8.4h-5.6c-19.6-2.8-36.4-11.2-53.2-19.6-5.6-5.6-16.8-11.2-22.4-19.6-8.4-8.4-14-19.6-19.6-33.6-2.8-14-5.6-25.2-8.4-39.2 0-11.2-2.8-25.2 0-39.2C312 182 317.6 168 326 154c2.8-2.8 2.8-5.6 5.6-8.4v-2.8c-2.8-8.4-2.8-16.8-2.8-28s2.8-22.4 8.4-33.6C340 72.8 345.6 70 354 70s22.4 2.8 33.6 8.4C398.8 84 410 89.6 421.2 98c14-2.8 28-5.6 44.8-5.6h56c14 0 28 2.8 39.2 5.6l5.6-2.8c5.6-2.8 14-8.4 19.6-11.2 11.2-5.6 19.6-8.4 30.8-8.4h8.4c8.4 0 14 2.8 16.8 11.2 5.6 16.8 11.2 33.6 5.6 56v2.8c0 2.8 0 5.6-2.8 8.4 14 16.8 19.6 36.4 22.4 58.8V238c0 14-2.8 28-5.6 39.2-5.6 14-11.2 28-19.6 39.2-8.4 11.2-19.6 16.8-28 22.4-16.8 8.4-33.6 16.8-50.4 19.6 5.6 11.2 8.4 22.4 8.4 36.4v89.6c0 8.4-5.6 14-14 14l-140-8.4zM536 350c-2.8-2.8-2.8-8.4-2.8-14 2.8-5.6 5.6-8.4 11.2-8.4h8.4c19.6-2.8 36.4-8.4 53.2-19.6 8.4-5.6 16.8-11.2 19.6-16.8 5.6-8.4 11.2-16.8 14-28 5.6-11.2 5.6-22.4 8.4-36.4v-19.6c-2.8-19.6-8.4-33.6-19.6-47.6-5.602-5.6-5.602-11.2-2.802-16.8 0-2.8 2.8-5.6 2.8-8.4v-2.8c2.8-11.2 0-22.4-2.8-33.6h-2.8c-5.6 0-14 2.8-19.6 5.6-5.6 2.8-11.2 5.6-19.6 11.2l-11.2 5.6c-2.8 2.8-8.4 2.8-11.2 2.8-14-2.8-25.2-5.6-39.2-5.6h-53.2c-16.8-2.8-30.8 0-44.8 5.6-2.8 0-8.4 0-14-2.8-11.2-8.4-22.4-14-33.6-19.6-5.6-2.8-11.2-2.8-16.8-2.8-2.8 5.6-2.8 14-2.8 19.6 0 8.4 0 14 2.8 19.6 0 2.8 0 2.8 2.8 5.6 2.8 5.6 0 11.2-2.8 14l-5.6 5.6c0 2.8-2.8 5.6-5.6 8.4-5.6 8.4-11.2 19.6-14 33.6-2.8 11.2 0 22.4 0 30.8 0 11.2 2.8 22.4 5.6 33.6 2.8 11.2 8.4 19.6 14 25.2 8.4 5.6 14 11.2 19.6 14 14 8.4 28 14 44.8 16.8 5.6 0 19.6 2.8 19.6 2.8 2.8 0 8.4 2.8 8.4 5.6 2.8 2.8 2.8 5.6 2.8 11.2 0 2.8-8.4 28-25.2 39.2-19.6 11.2-50.4 14-70-8.4l-8.4-8.4c-5.6-8.398-16.8-22.398-28-28h-2.8l-2.8 2.8c0 5.602 0 11.2 2.8 16.802 2.8 2.8 5.6 5.6 8.4 11.2 5.6 8.4 11.2 14 14 22.4 11.2 22.4 28 30.8 33.6 33.6 14 0 36.4-2.8 47.6-2.8-2.8 0-2.8 0 0 0s5.6 0 8.4 2.8c2.8 2.8 5.6 5.6 5.6 8.4v28H550v-75.6c0-11.2-2.8-19.602-5.6-28-2.8-5.602-2.8-8.402-5.6-8.402"/></svg>
|
Before Width: | Height: | Size: 2.2 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12.4"><style>.st0{fill:#f1f1f1;}</style><g id="downloadlog"><path class="st0" d="M5.1 11.3c-.4 0-.7-.3-.7-.7V.6c0-.3.3-.6.7-.6.4 0 .7.3.7.7v10c-.1.4-.4.6-.7.6z"/><path class="st0" d="M5.1 12.4c-.2 0-.3-.1-.5-.2L.2 7.8c-.3-.3-.3-.7 0-.9s.7-.3.9 0L5 10.8l4-3.9c.3-.3.7-.3.9 0s.3.7 0 .9l-4.4 4.4c-.1.1-.3.2-.4.2zM14.1 2.1H7.9c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h6.2c.4 0 .7.3.7.7s-.3.7-.7.7zM14.3 5.3H7.9c-.4 0-.6-.3-.6-.7 0-.4.2-.6.6-.6h6.4c.4 0 .7.2.7.6 0 .4-.3.7-.7.7zM14.3 8.5h-2.4c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7h2.4c.4 0 .7.3.7.7 0 .4-.3.7-.7.7zM13 11.6H9.2c-.4 0-.7-.3-.7-.7s.3-.7.7-.7H13c.4 0 .7.3.7.7s-.4.7-.7.7z"/></g></svg>
|
Before Width: | Height: | Size: 681 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-506.5 380.6 14.8 15"><style>.st0{fill:#939798;}</style><path class="st0" d="M-491.7 383c0-.1-.1-.2-.1-.3l-.1-.1h-.1-.1l-6.9-1.9h-.4l-6.7 1.9h-.1-.1l-.1.1c0 .1-.1.1-.1.2v8.9c0 .3.1.5.4.6l6.7 3c.1 0 .2.1.3.1h.2c.2 0 .3-.1.5-.2l6.4-2.5c.2-.1.4-.3.4-.6v-9.1c-.1 0-.1 0-.1-.1zm-7.5-1.1l4.6 1.3-4.4 1.4-4.6-1.4 4.4-1.3zm-6 2.1l5.6 1.7v8.4l-5.6-2.5V384zm6.8 9.9v-8.3l5.4-1.7v7.8l-5.4 2.2z"/></svg>
|
Before Width: | Height: | Size: 440 B |
|
@ -1,8 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="-519 391 20 20" style="enable-background:new -519 391 20 20;" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#A5ACAD" d="M-508.9,403.2c-0.3,0-0.6-0.3-0.6-0.6V395c0-0.3,0.3-0.6,0.6-0.6s0.6,0.3,0.6,0.6v7.6
|
||||
C-508.2,402.9-508.5,403.2-508.9,403.2z"/>
|
||||
<circle fill="#A5ACAD" cx="-508.9" cy="406.5" r="1.2"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 384 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#40a3ad" d="M10.9 10l3.9-3.9c.2-.2.2-.6 0-.9-.2-.2-.6-.2-.9 0L10 9.1 6.1 5.2c-.2-.2-.6-.2-.9 0-.2.2-.2.6 0 .9L9.1 10l-3.9 3.9c-.2.2-.2.6 0 .9.1.1.3.2.4.2s.3-.1.4-.2l3.9-3.9 3.9 3.9c.1.1.3.2.4.2.2 0 .3-.1.4-.2.2-.2.2-.6 0-.9L10.9 10z"/></svg>
|
Before Width: | Height: | Size: 313 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#FFFFFF" d="M10.9 10l3.9-3.9c.2-.2.2-.6 0-.9-.2-.2-.6-.2-.9 0L10 9.1 6.1 5.2c-.2-.2-.6-.2-.9 0-.2.2-.2.6 0 .9L9.1 10l-3.9 3.9c-.2.2-.2.6 0 .9.1.1.3.2.4.2s.3-.1.4-.2l3.9-3.9 3.9 3.9c.1.1.3.2.4.2.2 0 .3-.1.4-.2.2-.2.2-.6 0-.9L10.9 10z"/></svg>
|
Before Width: | Height: | Size: 313 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#A7AEAE" d="M10.9 10l3.9-3.9c.2-.2.2-.6 0-.9-.2-.2-.6-.2-.9 0L10 9.1 6.1 5.2c-.2-.2-.6-.2-.9 0-.2.2-.2.6 0 .9L9.1 10l-3.9 3.9c-.2.2-.2.6 0 .9.1.1.3.2.4.2s.3-.1.4-.2l3.9-3.9 3.9 3.9c.1.1.3.2.4.2.2 0 .3-.1.4-.2.2-.2.2-.6 0-.9L10.9 10z"/></svg>
|
Before Width: | Height: | Size: 313 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-505.3 376 18.2 16.3"><style>.st0{fill:#939798;}</style><g id="fingerprint"><path class="st0" d="M-496.9 381.2c-2.5.5-2.7 2.7-2.9 4.7-.2 1.5-.4 3.1-1.4 4.2-.2.3-.2.7 0 .9.3.2.7.2.9 0 1.3-1.5 1.5-3.3 1.7-5 .2-2.1.4-3.2 1.9-3.5.8-.2 1.5 0 1.9.4 1.3 1.4.7 5.9 0 8.4-.1.3.1.7.4.8h.2c.3 0 .5-.2.6-.5.1-.3 2-7.2-.3-9.7-.4-.4-1.3-1-3-.7z"/><path class="st0" d="M-496.8 378.6c-4.4.6-5.3 4.5-5.9 7.3-.2 1.1-.4 2.1-.8 2.7-.2.3-.1.7.3.9.3.2.7.1.9-.3.4-.8.7-1.9.9-3.1.6-2.9 1.3-5.8 4.8-6.3 1.5-.2 2.6.1 3.5 1 2.6 2.6 1.7 9.4 1.7 9.4-.1.4.2.7.5.7h.1c.3 0 .6-.2.6-.6 0-.3 1.1-7.5-2-10.6-1.2-1-2.7-1.4-4.6-1.1z"/><path class="st0" d="M-490.1 378c-1.6-1.5-3.7-2.2-6.4-1.9-9.4.9-8.8 10.6-8.8 10.7 0 .4.3.6.7.6.4 0 .6-.3.6-.7 0-.3-.5-8.5 7.6-9.3 2.3-.2 4.1.3 5.4 1.6 2.8 2.7 2.6 8.1 2.6 8.7 0 .4.3.7.6.7s.6-.3.6-.6c.1-1.2.3-6.8-2.9-9.8z"/><path class="st0" d="M-496.2 384.4c-.4 0-.6.4-.6.7 0 0 .4 3.4-1.4 6.1-.2.3-.1.7.2.9.1.1.2.1.4.1s.4-.1.5-.3c2-3.1 1.6-6.8 1.6-7 0-.3-.3-.5-.7-.5z"/></g></svg>
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-501 376.4 11.1 15"><style>.st0{fill:#F9F3D3;}</style><path id="flag" class="st0" d="M-492.5 380.3l2.5-2.4c.2-.2.2-.4.1-.6-.1-.2-.3-.4-.5-.4l-9.9-.5c-.1 0-.3.1-.4.2-.1.1-.2.3-.2.4v13.9c0 .3.3.6.6.6s.6-.3.6-.6v-6.2l9.4-.5c.2 0 .4-.2.5-.4.1-.2 0-.5-.1-.6l-2.6-2.9zm-7.3 3.1v-5.8l7.9.4-1.9 1.8c-.2.2-.2.6 0 .8l2.1 2.3-8.1.5z"/></svg>
|
Before Width: | Height: | Size: 379 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-501 376.4 11.1 15"><style>.st0{fill:#d2f5f9;}</style><path id="flag" class="st0" d="M-492.5 380.3l2.5-2.4c.2-.2.2-.4.1-.6-.1-.2-.3-.4-.5-.4l-9.9-.5c-.1 0-.3.1-.4.2-.1.1-.2.3-.2.4v13.9c0 .3.3.6.6.6s.6-.3.6-.6v-6.2l9.4-.5c.2 0 .4-.2.5-.4.1-.2 0-.5-.1-.6l-2.6-2.9zm-7.3 3.1v-5.8l7.9.4-1.9 1.8c-.2.2-.2.6 0 .8l2.1 2.3-8.1.5z"/></svg>
|
Before Width: | Height: | Size: 379 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 14.8"><style>.st0{fill:#949899;}</style><path class="st0" d="M6 14.8c-.1 0-.1 0 0 0-3.5-.7-6-3.8-6-7.3C0 3.4 3.4 0 7.5 0S15 3.4 15 7.5c0 3.3-2.1 6.2-5.3 7.2-.1 0-.2 0-.3-.1-.1-.1-.2-.2-.2-.3v-2.7c0-.3 0-.5-.1-.7 0-.1-.1-.2-.1-.2l-.1-.1c-.1-.1-.1-.3-.1-.4.1-.1.2-.2.3-.2h.2c.5-.1.9-.2 1.3-.4.2-.1.4-.3.5-.4.1-.2.3-.4.3-.7.1-.2.1-.5.1-.8v-.5c-.1-.5-.2-.8-.5-1.2 0-.2-.1-.4 0-.6V5.1c0-.3 0-.5-.1-.8-.2 0-.3.1-.5.2s-.3.2-.5.3l-.1.1c-.1.1-.3.1-.4.1-.3-.1-.6-.1-1-.2H7.1c-.3 0-.7.1-1 .2-.1 0-.2 0-.4-.1-.3-.2-.5-.3-.8-.4-.1 0-.2-.1-.4-.1 0 .2-.1.3-.1.5s0 .3.1.5v.1c0 .1 0 .3-.1.4V6s-.1.1-.1.2c-.2.2-.3.4-.3.8v.8c0 .2.1.5.1.8.1.2.2.4.4.6.1.1.3.3.4.3.3.2.7.4 1.1.4.1.1.4.1.4.1.1 0 .2.1.3.2.1.1.1.2.1.3 0 .1-.2.7-.7 1-.5.3-1.3.3-1.8-.2l-.2-.2c-.1-.2-.4-.6-.6-.7h-.1s0 .3.1.4c.1.1.1.2.2.2.1.2.3.4.3.6.3.6.7.7.8.8.3.1.8 0 1 0 .1 0 .2 0 .3.1.1.1.1.2.1.3v1.7c0 .1-.1.2-.1.3H6zM7.5.8C3.8.8.8 3.8.8 7.5c0 3 2 5.6 4.8 6.4v-.8c-.3 0-.6 0-.9-.1-.3-.1-.9-.3-1.3-1.2 0-.1-.2-.3-.3-.4-.1-.1-.1-.2-.2-.3-.3-.4-.3-1 0-1.3.1-.2.5-.3.8-.1.1 0 .2.1.3.1l-.1-.1c-.2-.3-.4-.6-.5-.9-.1-.3-.2-.6-.2-1 0-.3-.1-.6 0-1s.2-.8.4-1.1c0-.1.1-.1.1-.2v-.1c0-.2-.1-.5-.1-.7 0-.3.1-.5.2-.9.2-.1.3-.2.5-.2s.6 0 .9.2c.3.1.6.2.8.4.3-.1.7-.1 1.1-.2h1.4c.3 0 .7.1 1 .2l.2-.1c.1-.1.3-.2.5-.2.3-.1.5-.2.8-.3h.2c.2 0 .4.1.5.3.1.4.3.9.2 1.4V5.6c.2.4.4.9.5 1.4v.6c0 .4-.1.7-.2 1-.1.4-.3.7-.5 1-.2.3-.5.5-.7.6-.4.2-.8.4-1.2.5.1.3.2.5.2.9v2.2c2.6-1 4.3-3.5 4.3-6.3C14.2 3.8 11.2.8 7.5.8zM4.3 10c.2.2.3.4.5.6 0 .1.1.1.1.1.2.3.6.3.8.1l.1-.1h-.1c-.5-.1-.9-.3-1.3-.5 0-.1-.1-.1-.1-.2z" id="circledgithub"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-289 191 20 20"><style>.st0{fill:#A5ACAD;}</style><path class="st0" d="M-272.4 198.4h-3.4l.3-3.3c0-.3-.2-.6-.5-.6s-.6.2-.6.5l-.3 3.4h-3.2l.3-3.6c0-.3-.2-.6-.5-.6s-.6.2-.6.5l-.3 3.7h-3.2c-.3 0-.5.2-.5.6 0 .3.2.5.5.5h3.1l-.2 2.9h-3.5c-.3 0-.5.2-.5.6 0 .3.2.5.5.5h3.4l-.3 3.3c0 .3.2.6.5.6s.5-.2.5-.5l.3-3.4h3.2l-.3 3.6c0 .3.2.6.5.6s.5-.2.5-.5l.3-3.7h3.2c.3 0 .5-.2.5-.6 0-.3-.2-.5-.5-.5h-3.1l.2-2.9h3.5c.3 0 .5-.2.5-.6.3-.2 0-.5-.3-.5zm-4.8 4h-3.2l.2-2.9h3.2l-.2 2.9z"/></svg>
|
Before Width: | Height: | Size: 522 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.7 15"><style>.st0{fill:#40a3ad;}</style><g id="helpquestion"><path class="st0" d="M4.1 11.5c-.4 0-.6-.3-.7-.6 0-.1-.1-3.3 2.5-4.8C7 5.5 7.6 4.4 7.3 3.2c-.2-.9-1.1-1.9-2.9-1.9-1 0-1.8.3-2.3.8-.8.9-.8 2.2-.8 2.3 0 .3-.2.6-.6.6-.4 0-.7-.2-.7-.6 0-.1-.1-1.9 1.2-3.2C2 .4 3 0 4.4 0c2.1 0 3.7 1.1 4.2 2.9.4 1.7-.4 3.4-2 4.4-1.9 1.1-1.9 3.5-1.8 3.6 0 .3-.3.6-.7.6z"/><circle class="st0" cx="4.1" cy="14.1" r=".9"/></g></svg>
|
Before Width: | Height: | Size: 472 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8.7 15"><style>.st0{fill:#949899;}</style><g id="helpquestion"><path class="st0" d="M4.1 11.5c-.4 0-.6-.3-.7-.6 0-.1-.1-3.3 2.5-4.8C7 5.5 7.6 4.4 7.3 3.2c-.2-.9-1.1-1.9-2.9-1.9-1 0-1.8.3-2.3.8-.8.9-.8 2.2-.8 2.3 0 .3-.2.6-.6.6-.4 0-.7-.2-.7-.6 0-.1-.1-1.9 1.2-3.2C2 .4 3 0 4.4 0c2.1 0 3.7 1.1 4.2 2.9.4 1.7-.4 3.4-2 4.4-1.9 1.1-1.9 3.5-1.8 3.6 0 .3-.3.6-.7.6z"/><circle class="st0" cx="4.1" cy="14.1" r=".9"/></g></svg>
|
Before Width: | Height: | Size: 472 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 6.1"><style>.st0{fill:#949899;}</style><path class="st0" d="M12.2 0C11 0 10.1.7 9.6 1.7h-9c-.3 0-.6.3-.6.6v3c0 .4.3.7.6.7s.6-.3.6-.6V2.9h.9v2.5c0 .4.3.6.6.6.4 0 .6-.3.6-.6V2.9h5.9c.1 1.5 1.3 2.7 2.8 2.7 1.6 0 2.8-1.3 2.8-2.8C15 1.3 13.7 0 12.2 0zm0 4.4c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5z"/></svg>
|
Before Width: | Height: | Size: 383 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-505.6 382.2 15 11.8"><style>.st0{fill:#939798;}</style><g id="codelang"><path class="st0" d="M-501.7 391.8c-.2 0-.3-.1-.4-.2l-3.2-3.2c-.2-.2-.2-.6 0-.9l3.2-3.2c.2-.2.6-.2.9 0 .2.2.2.6 0 .9l-2.8 2.8 2.8 2.8c.2.2.2.6 0 .9-.2 0-.4.1-.5.1zM-494.4 391.8c-.2 0-.3-.1-.4-.2-.2-.2-.2-.6 0-.9l2.8-2.8-2.8-2.8c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0l3.2 3.2c.2.2.2.6 0 .9l-3.2 3.2c-.2.2-.4.3-.5.3zM-499.8 394.1h-.2c-.3-.1-.5-.5-.4-.8l3.4-10.6c.1-.3.5-.5.8-.4.3.1.5.5.4.8l-3.4 10.6c-.1.2-.3.4-.6.4z"/></g></svg>
|
Before Width: | Height: | Size: 542 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-504 379.9 12.7 16"><style>.st0{fill:#939798;}</style><path class="st0" d="M-497.6 383c-.8 0-1.2.2-1.4.3-.2.1-.4.4-.4.6 0 .2.1.4.3.6l1.1.7c.1 0 .2.1.4.1.1 0 .3-.1.4-.1 1.1-.8 1.2-.8 1.2-.9.1-.1.2-.3.2-.4 0-.2-.1-.5-.3-.6-.3-.1-.8-.3-1.5-.3zm0 1.3l-.4-.3h.8c-.2.1-.3.2-.4.3z"/><path class="st0" d="M-493.9 385.7c-.5-.5-.7-2-.8-2.9-.1-1.6-1.4-2.8-3-2.8s-2.9 1.2-3 2.8c0 .2-.1.5-.1.8-.1.9-.2 1.7-.7 2.2-1.1 1.1-2.4 3.2-2.5 4v.1c0 .6.3 1.1.8 1.2.2 0 .5 0 .7-.2 0 0 .5-.3.8-.4v.1s.2.7.3.9c-.2.2-.3.4-.3.7v.2h-.1c-.5.1-.8.5-.8 1 0 .2 0 .4.1.5 0 0 1.4 2.2 2.9 2.2 0 0 .3 0 .5-.1s.3-.2.3-.2c.4-.3.6-.8.6-1.6h1.1c.1.8.3 1.4.6 1.6 0 0 .2.1.3.2.2.1.5.1.5.1 1.5 0 2.8-2.2 2.9-2.2.1-.1.1-.3.1-.5 0-.5-.3-.9-.8-1l-.1-.1v-.2c0-.2-.1-.4-.3-.6.1-.3.3-.7.4-1.1.3.1.6.4.7.4.2.2.5.2.7.2.2 0 .8-.2.8-1.2 0-.9-1.6-3.1-2.6-4.1zm-5.5 9.2s-.1 0 0 0c-.1.1-.2.1-.2.1-.7 0-1.8-1.3-2-1.7h.1c.4-.1.8-.5.8-1l.1-.1.2.2c.3.2.7.3 1.1.1l.2-.1s.1.3.1 1.2c-.2.9-.3 1.2-.4 1.3zm2.4-3c-.1.2-.1.6-.1 1.1-.2 0-.3.1-.5.1s-.4 0-.5-.1c0 0-.1-.9-.1-1.1-.2-.6-1-.9-1.6-.5l-.1-.1c-.1-.1-.3-.2-.5-.3-.1-.3-.2-.5-.3-.7.1-1.6 1.6-3.7 3.1-3.7s3 1.6 3.1 3.2c-.1.4-.2.8-.4 1.2h.2c-.3 0-.5.1-.7.3h-.1c-.5-.2-1.3 0-1.5.6zm3.2 1.3s.1 0 0 0c.1 0 .1 0 .1.1-.2.4-1.3 1.7-2 1.7h-.1l-.1-.1c-.1-.1-.2-.4-.2-1.4 0-1 .1-1.2.1-1.2s.1.1.2.1c.4.2.8.1 1.1-.1 0 0 .1-.1.2-.1-.1.3.2.9.7 1zm1.5-3.3c-.3-.2-.9-.5-1.2-.6-.4-1.9-2.2-3.5-4-3.5-1.7 0-3.3 1.7-3.9 3.5h-.2c-.9.4-1.2.5-1.4.6.1-.5 1.2-2.5 2.3-3.5.7-.7.9-1.8 1-2.8 0-.2.1-.5.1-.8.1-1.1.9-1.9 2-1.9s1.9.8 2 1.9c0 .3.2 2.7 1.1 3.6 1 1.1 2.2 3 2.2 3.5 0-.1 0 0 0 0z"/></svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-501.2 377.3 11.2 15"><style>.st0{fill:#939798;}</style><path class="st0" d="M-490.4 387.9c-.2-.1-.3-.2-.5-.3-.4-.3-.6-.7-.7-1.1-.1-.6-.1-1.2.2-1.6.2-.2.4-.5.7-.7.1 0 .1-.1.2-.2.2-.2.2-.5 0-.7-.1-.2-.3-.4-.4-.5-.5-.5-1.1-.8-1.8-.9-.3 0-.6-.1-1-.1-.3 0-.7.1-1.1.3l-.8.3-.9-.3c-.4-.1-.8-.3-1.2-.2-.9 0-1.7.4-2.4 1-.6.6-1 1.3-1.1 2.2 0 .2 0 .3-.1.5v1.1c0 .5.2 1.1.3 1.7.3.8.6 1.5 1 2.1.3.4.5.8.9 1.2.2.2.5.5.9.6.1 0 .2 0 .3.1h.6c.1 0 .2 0 .4-.1.1 0 .3-.1.4-.2l.3-.1c.5-.2.9-.2 1.4.1.2.1.5.2.9.3.6.1 1.1 0 1.6-.4.3-.3.6-.6.8-.9.4-.6.7-1.1 1-1.7.1-.1.1-.3.2-.4v-.1c0-.1.1-.2.1-.3.2-.4.1-.6-.2-.7zm-1 .9c-.2.5-.5.9-.8 1.4-.2.3-.4.5-.6.7-.2.2-.4.2-.7.2-.2 0-.5-.1-.6-.2-.8-.3-1.5-.4-2.2-.1l-.3.1c-.1 0-.3.1-.4.1-.1 0-.1 0-.2.1h-.2-.1c-.1-.1-.3-.2-.5-.4-.3-.3-.5-.6-.8-1-.3-.5-.6-1.1-.8-1.8-.2-.5-.2-.9-.3-1.4v-1c0-.1 0-.3.1-.4.1-.6.4-1.2.8-1.6.4-.4 1-.7 1.6-.7.2 0 .5.1.8.2l.9.3c.3.1.5.1.8 0l.8-.3c.3-.1.6-.2.8-.2h.6c.4.1.8.2 1.1.5l-.6.6c-.5.7-.6 1.6-.4 2.5.2.7.5 1.3 1.2 1.8-.1.4 0 .5 0 .6.1 0 0 0 0 0zM-495.7 381.7H-495.4c.3 0 .7-.1 1-.2.5-.2.9-.5 1.3-1s.7-1.1.8-1.7c.1-.3.1-.6 0-.9 0-.3-.3-.6-.6-.6h-.1-.4c-1.5.4-2.7 1.6-2.9 3.1V381c.1.4.3.6.6.7zm2.2-3c-.1.4-.3.7-.5 1.1-.3.3-.5.5-.8.7h-.1c0-.7.6-1.5 1.4-1.8z"/></svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,11 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="NoBuild">
|
||||
<g>
|
||||
<path fill="#A7AEAE" d="M10,16.2c-3.4,0-6.1-2.8-6.1-6.2S6.6,3.8,10,3.8s6.1,2.8,6.1,6.2S13.4,16.2,10,16.2z M10,5.2
|
||||
c-2.7,0-4.9,2.2-4.9,4.8s2.2,4.8,4.9,4.8s4.9-2.2,4.9-4.8S12.7,5.2,10,5.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 584 B |
|
@ -1,9 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Passed">
|
||||
<g>
|
||||
<path fill="#39A85B" d="M9.6,14.4c-0.1,0-0.3-0.1-0.4-0.1l-4-3.3c-0.3-0.2-0.3-0.6-0.1-0.9S5.8,9.8,6.1,10l3.4,2.8l4.9-7.5
|
||||
C14.6,5,15,4.9,15.3,5.1c0.3,0.2,0.4,0.6,0.2,0.9l-5.3,8.1C10.1,14.3,9.9,14.4,9.6,14.4C9.7,14.4,9.7,14.4,9.6,14.4z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 493 B |
|
@ -1,15 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Pull">
|
||||
<path fill="#A7AEAE" d="M8,4.5C8,3.1,6.9,2,5.5,2S3,3.1,3,4.5c0,1.1,0.8,2.1,1.8,2.4v6.5c-1,0.3-1.8,1.2-1.8,2.4
|
||||
c0,1.4,1.1,2.5,2.5,2.5S8,17,8,15.7c0-1.1-0.8-2.1-1.8-2.4V6.8C7.2,6.6,8,5.6,8,4.5z M4.3,4.5c0-0.6,0.5-1.2,1.2-1.2
|
||||
s1.2,0.5,1.2,1.2S6.1,5.6,5.5,5.6S4.3,5.1,4.3,4.5z M6.7,15.7c0,0.6-0.5,1.2-1.2,1.2s-1.2-0.5-1.2-1.2s0.5-1.2,1.2-1.2
|
||||
S6.7,15,6.7,15.7z"/>
|
||||
<path fill="#A7AEAE" d="M15.1,13.3v-6c0-1-0.3-1.9-0.9-2.4c-1-0.9-2.4-0.8-2.4-0.8h-1c0.3-0.3,0.7-0.7,1-1c0.3-0.3,0.3-0.7,0-0.9
|
||||
s-0.7-0.3-0.9,0c-1.2,1.2-1.7,1.7-2,2C8.8,4.2,8.7,4.3,8.6,4.4c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0.1,0.1,0.2,0.2,0.3c0.3,0.3,0.8,0.9,2,2c0.1,0.1,0.3,0.2,0.5,0.2s0.3-0.1,0.5-0.2
|
||||
c0.3-0.3,0.3-0.7,0-0.9c-0.3-0.3-0.7-0.7-1-1l1,0c0,0,0.9,0,1.5,0.5c0.3,0.3,0.5,0.8,0.5,1.5v6.1c-1,0.3-1.8,1.2-1.8,2.4
|
||||
c0,1.4,1.1,2.5,2.5,2.5S17,17,17,15.7C17,14.5,16.2,13.6,15.1,13.3z M14.5,16.8c-0.6,0-1.2-0.5-1.2-1.2s0.5-1.2,1.2-1.2
|
||||
s1.2,0.5,1.2,1.2S15.1,16.8,14.5,16.8z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,8 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Push">
|
||||
<path fill="#A7AEAE" d="M16.9,9.4h-3.5c-0.3-1.6-1.7-2.8-3.4-2.8S6.9,7.8,6.6,9.4H3.1c-0.3,0-0.6,0.3-0.6,0.6s0.3,0.6,0.6,0.6h3.5
|
||||
c0.3,1.6,1.7,2.8,3.4,2.8s3.1-1.2,3.4-2.8h3.5c0.3,0,0.6-0.3,0.6-0.6S17.2,9.4,16.9,9.4z M10,12.2c-1.2,0-2.2-1-2.2-2.2
|
||||
c0-1.2,1-2.2,2.2-2.2c1.2,0,2.2,1,2.2,2.2c0,0,0,0,0,0c0,0,0,0,0,0C12.2,11.2,11.2,12.2,10,12.2z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 515 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 10.9"><style>.st0{fill:#f1f1f1;}</style><g id="removelog"><path class="st0" d="M12.3 1.8h1.9c.3 0 .6-.3.6-.6s-.3-.6-.6-.6h-1.9c-.3 0-.6.3-.6.6 0 .4.3.6.6.6zM9.7 3.5c-.3 0-.6.3-.6.6s.3.6.6.6h4.8c.3 0 .6-.3.6-.6s-.3-.6-.6-.6H9.7zM14.4 6.3H9.7c-.3 0-.6.3-.6.6s.3.6.6.6h4.7c.3 0 .6-.3.6-.6 0-.4-.3-.6-.6-.6zM13.2 9.1h-.7c-.3 0-.6.3-.6.6s.3.6.6.6h.7c.3 0 .6-.3.6-.6 0-.4-.3-.6-.6-.6z"/><path class="st0" d="M6.3 5.4L10.7 1c.2-.2.2-.6 0-.9-.2-.2-.6-.2-.9 0L5.4 4.5 1.1.2C.9 0 .5 0 .2.2s-.2.6 0 .9l4.4 4.4L.2 9.8c-.2.2-.2.6 0 .9.1.1.3.2.4.2s.3-.1.4-.2l4.4-4.4 4.4 4.4c.1.1.3.2.4.2.2 0 .3-.1.4-.2.2-.2.2-.6 0-.9L6.3 5.4z"/></g></svg>
|
Before Width: | Height: | Size: 681 B |
|
@ -1 +0,0 @@
|
|||
<svg id="scale" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18.3 16.5"><style>.st0{fill:#A7AEAE;}</style><path class="st0" d="M18.3 10.8v-.1-.1l-3.1-6c0-.2-.2-.4-.5-.5L9.8 3V.6c0-.3-.3-.6-.6-.6s-.6.3-.6.6v2.1L3.3 1.5c-.2 0-.4 0-.5.1l-.3.3-2.5 6v.2c.1 1.8 1.5 3.3 3.4 3.3S6.7 10 6.8 8.2v-.1V8L4.2 2.9l4.4 1v11.4H6c-.3 0-.6.3-.6.6s.3.6.6.6h6.5c.3 0 .6-.3.6-.6s-.3-.6-.6-.6H9.8V4.2l4.1.9-2.3 5.5v.2c.1 1.8 1.5 3.3 3.4 3.3s3.3-1.4 3.3-3.3zM3.1 3.6l2 4H1.5l1.6-4zm.3 6.6c-1 0-1.8-.6-2.1-1.5h4.1c-.2.9-1.1 1.5-2 1.5zm13.3 0H13l1.6-4 2.1 4zM15 12.9c-1 0-1.8-.6-2.1-1.5H17c-.3.9-1.1 1.5-2 1.5z"/></svg>
|
Before Width: | Height: | Size: 598 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.2 15"><style>.st0{fill:#40a3ad;}</style><path class="st0" d="M7.9 15H6.3c-.9 0-1.6-.7-1.6-1.6v-.9c-.2-.1-.4-.2-.5-.3l-.7.4c-.8.5-1.8.2-2.3-.6l-.8-1.4c-.6-.7-.4-1.7.4-2.2l.8-.4v-.5-.4l-.8-.4c-.4-.2-.6-.6-.8-1-.1-.4 0-.9.2-1.3L1.1 3c.2-.4.6-.6 1-.8.4-.1.9-.1 1.2.2l.7.5c.2-.1.4-.3.6-.4v-.9C4.7.7 5.4 0 6.3 0h1.6c.9 0 1.6.7 1.6 1.6v.9c.2.1.4.2.5.3l.8-.5c.4-.2.8-.3 1.2-.2.4.1.8.4 1 .7l1 1.5c.5.8.2 1.8-.6 2.3l-.7.4v.9l.7.4c.8.5 1 1.5.6 2.2l-.8 1.5c-.2.4-.6.6-1 .8-.4.1-.9.1-1.2-.2l-.8-.4-.6.3v.9c0 .9-.8 1.6-1.7 1.6zm-3.7-4.4l.3.3c.3.3.7.4 1 .6l.4.2v1.7c0 .2.2.3.4.3h1.6c.2 0 .4-.2.4-.3v-1.7l.4-.2c.3-.2.9-.5 1.1-.6l.3-.3 1.5.9c.1.1.2 0 .3 0 .1 0 .2-.1.2-.2l.8-1.4c.1-.2 0-.4-.1-.5l-1.5-.9.1-.4c0-.2.1-.4.1-.6 0-.2 0-.5-.1-.7l-.1-.4 1.5-.9c.1-.1.2-.3.1-.5L12 3.6c-.1-.1-.2-.1-.2-.2h-.3l-1.5.9-.3-.2c-.2-.2-.7-.5-1-.6l-.4-.1V1.6c0-.2-.2-.3-.4-.3H6.3c-.2 0-.4.2-.4.3v1.7l-.4.2c-.3.2-.7.4-1 .6l-.4.3-1.5-.9c-.1-.1-.2 0-.3 0-.1 0-.2.1-.2.2l-.8 1.4c-.1.1 0 .2 0 .3 0 .1.1.2.2.2l1.5.8-.1.5c0 .2-.1.4-.1.6 0 .2 0 .5.1.7l.1.4-1.5.9c-.2.1-.2.3-.1.5l.8 1.4c.1.2.3.2.5.1l1.5-.9zm2.9-.4c-1.5 0-2.7-1.2-2.7-2.7s1.2-2.7 2.7-2.7c1.5 0 2.7 1.2 2.7 2.7s-1.2 2.7-2.7 2.7zm0-4.1c-.8 0-1.4.6-1.4 1.4s.6 1.4 1.4 1.4c.8 0 1.4-.6 1.4-1.4s-.6-1.4-1.4-1.4z" id="settingscog"/></svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14.2 15"><style>.st0{fill:#8d8d8d;}</style><path class="st0" d="M7.9 15H6.3c-.9 0-1.6-.7-1.6-1.6v-.9c-.2-.1-.4-.2-.5-.3l-.7.4c-.8.5-1.8.2-2.3-.6l-.8-1.4c-.6-.7-.4-1.7.4-2.2l.8-.4v-.5-.4l-.8-.4c-.4-.2-.6-.6-.8-1-.1-.4 0-.9.2-1.3L1.1 3c.2-.4.6-.6 1-.8.4-.1.9-.1 1.2.2l.7.5c.2-.1.4-.3.6-.4v-.9C4.7.7 5.4 0 6.3 0h1.6c.9 0 1.6.7 1.6 1.6v.9c.2.1.4.2.5.3l.8-.5c.4-.2.8-.3 1.2-.2.4.1.8.4 1 .7l1 1.5c.5.8.2 1.8-.6 2.3l-.7.4v.9l.7.4c.8.5 1 1.5.6 2.2l-.8 1.5c-.2.4-.6.6-1 .8-.4.1-.9.1-1.2-.2l-.8-.4-.6.3v.9c0 .9-.8 1.6-1.7 1.6zm-3.7-4.4l.3.3c.3.3.7.4 1 .6l.4.2v1.7c0 .2.2.3.4.3h1.6c.2 0 .4-.2.4-.3v-1.7l.4-.2c.3-.2.9-.5 1.1-.6l.3-.3 1.5.9c.1.1.2 0 .3 0 .1 0 .2-.1.2-.2l.8-1.4c.1-.2 0-.4-.1-.5l-1.5-.9.1-.4c0-.2.1-.4.1-.6 0-.2 0-.5-.1-.7l-.1-.4 1.5-.9c.1-.1.2-.3.1-.5L12 3.6c-.1-.1-.2-.1-.2-.2h-.3l-1.5.9-.3-.2c-.2-.2-.7-.5-1-.6l-.4-.1V1.6c0-.2-.2-.3-.4-.3H6.3c-.2 0-.4.2-.4.3v1.7l-.4.2c-.3.2-.7.4-1 .6l-.4.3-1.5-.9c-.1-.1-.2 0-.3 0-.1 0-.2.1-.2.2l-.8 1.4c-.1.1 0 .2 0 .3 0 .1.1.2.2.2l1.5.8-.1.5c0 .2-.1.4-.1.6 0 .2 0 .5.1.7l.1.4-1.5.9c-.2.1-.2.3-.1.5l.8 1.4c.1.2.3.2.5.1l1.5-.9zm2.9-.4c-1.5 0-2.7-1.2-2.7-2.7s1.2-2.7 2.7-2.7c1.5 0 2.7 1.2 2.7 2.7s-1.2 2.7-2.7 2.7zm0-4.1c-.8 0-1.4.6-1.4 1.4s.6 1.4 1.4 1.4c.8 0 1.4-.6 1.4-1.4s-.6-1.4-1.4-1.4z" id="settingscog"/></svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-506.8 377.5 17.5 19.5"><style>.st0{fill:#A5ACAD;}</style><path class="st0" d="M-499.4 397c-4.1 0-7.4-3.3-7.4-7.4s3.3-7.4 7.4-7.4 7.4 3.3 7.4 7.4-3.4 7.4-7.4 7.4zm0-13.4c-3.3 0-6.1 2.7-6.1 6.1s2.7 6.1 6.1 6.1 6.1-2.7 6.1-6.1-2.8-6.1-6.1-6.1z"/><path class="st0" d="M-497.1 392c-.1 0-.2 0-.4-.1l-2.6-1.7c-.2-.1-.3-.3-.3-.5v-4.1c0-.4.3-.6.6-.6s.6.3.6.6v3.8l2.3 1.5c.3.2.4.6.2.9.1.1-.2.2-.4.2zM-499.4 381.9c-1.2 0-2.2-1-2.2-2.2s1-2.2 2.2-2.2c1.2 0 2.2 1 2.2 2.2s-1 2.2-2.2 2.2zm0-3.1c-.5 0-.9.4-.9.9s.4.9.9.9.9-.4.9-.9-.4-.9-.9-.9zM-491.3 387.6c-.3 0-.7-.2-.8-.5l-1.1-2.1c-.2-.5-.1-1 .4-1.3l1.1-.6c.5-.2 1-.1 1.3.4l1.1 2.1c.2.5.1 1-.4 1.3l-1.1.6c-.2.1-.4.1-.5.1zm-.7-3l.8 1.5.4-.2-.8-1.5-.4.2z"/></svg>
|
Before Width: | Height: | Size: 748 B |
|
@ -1,11 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Tofuburger">
|
||||
<path fill="#3eaaaf" d="M17.9,6.2H2.1C1.8,6.2,1.5,6,1.5,5.6C1.5,5.3,1.8,5,2.1,5h15.7c0.4,0,0.6,0.3,0.6,0.6
|
||||
C18.5,6,18.2,6.2,17.9,6.2z"/>
|
||||
<path fill="#3eaaaf" d="M17.9,10.6H2.1c-0.4,0-0.6-0.3-0.6-0.6s0.3-0.6,0.6-0.6h15.7c0.4,0,0.6,0.3,0.6,0.6S18.2,10.6,17.9,10.6z
|
||||
"/>
|
||||
<path fill="#3eaaaf" d="M17.9,15H2.1c-0.4,0-0.6-0.3-0.6-0.6c0-0.3,0.3-0.6,0.6-0.6h15.7c0.4,0,0.6,0.3,0.6,0.6
|
||||
C18.5,14.7,18.2,15,17.9,15z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 672 B |
|
@ -1,11 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 20 20" enable-background="new 0 0 20 20" xml:space="preserve">
|
||||
<g id="Tofuburger">
|
||||
<path fill="#9d9d9d" d="M17.9,6.2H2.1C1.8,6.2,1.5,6,1.5,5.6C1.5,5.3,1.8,5,2.1,5h15.7c0.4,0,0.6,0.3,0.6,0.6
|
||||
C18.5,6,18.2,6.2,17.9,6.2z"/>
|
||||
<path fill="#9d9d9d" d="M17.9,10.6H2.1c-0.4,0-0.6-0.3-0.6-0.6s0.3-0.6,0.6-0.6h15.7c0.4,0,0.6,0.3,0.6,0.6S18.2,10.6,17.9,10.6z
|
||||
"/>
|
||||
<path fill="#9d9d9d" d="M17.9,15H2.1c-0.4,0-0.6-0.3-0.6-0.6c0-0.3,0.3-0.6,0.6-0.6h15.7c0.4,0,0.6,0.3,0.6,0.6
|
||||
C18.5,14.7,18.2,15,17.9,15z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 672 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-502.4 377 12.1 15"><style>.st0{fill:#939798;}</style><g id="disabledtrash"><path class="st0" d="M-492.3 382.7l-.6 8.2h-6.6v-.4l-.8.9-.2.2c.1.2.3.4.5.4h7.7c.3 0 .5-.2.6-.5l.8-9.6c0-.1 0-.3-.1-.4l-1.3 1.2zM-496.1 381.4h-4.7c-.2 0-.3.1-.4.2-.1.1-.2.3-.1.4l.4 4.7 1-1.1-.2-3h3.1l.9-1.2zM-501.8 380.6h6.5l1.8-1.9v-.3c0-.7-.6-1.3-1.3-1.3h-2.7c-.7 0-1.3.6-1.3 1.3v1.1h-2.9c-.3 0-.6.3-.6.6s.2.5.5.5zm4-2.2c0-.1.1-.2.2-.2h2.7c.1 0 .2.1.2.2v1.1h-3.1v-1.1z"/><path class="st0" d="M-497.4 389.8c.1 0 .1 0 0 0 .3 0 .4-.2.4-.5l-.1-1.5-.8.9v.7c.1.2.3.4.5.4zM-495.1 389.8c.2 0 .4-.2.4-.4l.3-4.4-.9 1-.2 3.3c-.1.2.1.4.4.5zM-490.5 378.1c-.2-.2-.6-.2-.8 0l-10.9 11.7c-.2.2-.2.6 0 .8.1.1.2.2.4.2s.3-.1.4-.2l10.9-11.7c.2-.3.2-.6 0-.8z"/></g></svg>
|
Before Width: | Height: | Size: 776 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-501.7 376.8 12.3 15"><style>.st0{fill:#d94341;}</style><g id="trash"><path class="st0" d="M-491 381.1h-9.2c-.2 0-.3.1-.4.2-.1.1-.2.3-.1.4l.8 9.6c0 .3.3.5.6.5h7.7c.3 0 .5-.2.6-.5l.8-9.6c0-.2 0-.3-.1-.4-.4-.1-.5-.2-.7-.2zm-1.3 9.6h-6.6l-.7-8.4h8l-.7 8.4zM-490 379.2h-2.9v-1.1c0-.7-.6-1.3-1.3-1.3h-2.7c-.7 0-1.3.6-1.3 1.3v1.1h-2.9c-.3 0-.6.3-.6.6s.3.6.6.6h11.2c.3 0 .6-.3.6-.6s-.4-.6-.7-.6zm-7.1-1c0-.1.1-.2.2-.2h2.7c.1 0 .2.1.2.2v1.1h-3.1v-1.1z"/><path class="st0" d="M-496.7 389.5c.3 0 .4-.2.4-.5l-.4-5.2c0-.2-.2-.4-.5-.4-.2 0-.4.2-.4.5l.4 5.2c.1.3.3.4.5.4zM-494.5 389.5c.3 0 .4-.2.5-.4l.4-5.2c0-.2-.2-.4-.4-.5-.2 0-.4.2-.5.4l-.4 5.2c0 .3.2.5.4.5z"/></g></svg>
|
Before Width: | Height: | Size: 709 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-501.7 376.8 12.3 15"><style>.st0{fill:#939798;}</style><g id="trash"><path class="st0" d="M-491 381.1h-9.2c-.2 0-.3.1-.4.2-.1.1-.2.3-.1.4l.8 9.6c0 .3.3.5.6.5h7.7c.3 0 .5-.2.6-.5l.8-9.6c0-.2 0-.3-.1-.4-.4-.1-.5-.2-.7-.2zm-1.3 9.6h-6.6l-.7-8.4h8l-.7 8.4zM-490 379.2h-2.9v-1.1c0-.7-.6-1.3-1.3-1.3h-2.7c-.7 0-1.3.6-1.3 1.3v1.1h-2.9c-.3 0-.6.3-.6.6s.3.6.6.6h11.2c.3 0 .6-.3.6-.6s-.4-.6-.7-.6zm-7.1-1c0-.1.1-.2.2-.2h2.7c.1 0 .2.1.2.2v1.1h-3.1v-1.1z"/><path class="st0" d="M-496.7 389.5c.3 0 .4-.2.4-.5l-.4-5.2c0-.2-.2-.4-.5-.4-.2 0-.4.2-.4.5l.4 5.2c.1.3.3.4.5.4zM-494.5 389.5c.3 0 .4-.2.5-.4l.4-5.2c0-.2-.2-.4-.4-.5-.2 0-.4.2-.5.4l-.4 5.2c0 .3.2.5.4.5z"/></g></svg>
|
Before Width: | Height: | Size: 709 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#40a3ad" d="M17.2 7.9c-.2-.3-.6-.2-.9.1l-1 1.2C14.9 6 12.2 3.6 9 3.6c-3.6 0-6.4 2.9-6.4 6.4s2.9 6.4 6.4 6.4c1.8 0 3.6-.8 4.8-2.2.2-.3.2-.7-.1-.9-.3-.2-.7-.2-.9.1-1 1.1-2.4 1.7-3.9 1.7-2.8 0-5.1-2.3-5.1-5.1S6.1 4.9 9 4.9c2.7 0 4.9 2.1 5.1 4.7l-1.7-1.1c-.3-.2-.7-.1-.9.2s-.1.7.2.9l2.8 1.8c.1.1.2.1.3.1.1 0 .2 0 .3-.1 0 0 .1 0 .1-.1l.1-.1 2-2.4c.3-.3.2-.7-.1-.9z"/></svg>
|
Before Width: | Height: | Size: 440 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#FFFFFF" d="M17.2 7.9c-.2-.3-.6-.2-.9.1l-1 1.2C14.9 6 12.2 3.6 9 3.6c-3.6 0-6.4 2.9-6.4 6.4s2.9 6.4 6.4 6.4c1.8 0 3.6-.8 4.8-2.2.2-.3.2-.7-.1-.9-.3-.2-.7-.2-.9.1-1 1.1-2.4 1.7-3.9 1.7-2.8 0-5.1-2.3-5.1-5.1S6.1 4.9 9 4.9c2.7 0 4.9 2.1 5.1 4.7l-1.7-1.1c-.3-.2-.7-.1-.9.2s-.1.7.2.9l2.8 1.8c.1.1.2.1.3.1.1 0 .2 0 .3-.1 0 0 .1 0 .1-.1l.1-.1 2-2.4c.3-.3.2-.7-.1-.9z"/></svg>
|
Before Width: | Height: | Size: 440 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#A7AEAE" d="M17.2 7.9c-.2-.3-.6-.2-.9.1l-1 1.2C14.9 6 12.2 3.6 9 3.6c-3.6 0-6.4 2.9-6.4 6.4s2.9 6.4 6.4 6.4c1.8 0 3.6-.8 4.8-2.2.2-.3.2-.7-.1-.9-.3-.2-.7-.2-.9.1-1 1.1-2.4 1.7-3.9 1.7-2.8 0-5.1-2.3-5.1-5.1S6.1 4.9 9 4.9c2.7 0 4.9 2.1 5.1 4.7l-1.7-1.1c-.3-.2-.7-.1-.9.2s-.1.7.2.9l2.8 1.8c.1.1.2.1.3.1.1 0 .2 0 .3-.1 0 0 .1 0 .1-.1l.1-.1 2-2.4c.3-.3.2-.7-.1-.9z"/></svg>
|
Before Width: | Height: | Size: 440 B |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="#f2f2f2" d="M17.4 9.6c-.1-.2-3.3-4.1-7.4-4.1s-7.3 4-7.4 4.1c-.2.2-.2.6 0 .8.1.2 3.3 4.1 7.4 4.1s7.3-4 7.4-4.1c.2-.2.2-.6 0-.8zM10 13.2c-2.8 0-5.2-2.3-6.1-3.2.9-.9 3.3-3.2 6.1-3.2s5.2 2.3 6.1 3.2c-.9.9-3.3 3.2-6.1 3.2z"/><path fill="#f2f2f2" d="M10 7c-1.5 0-2.6 1.3-2.6 3s1.2 3 2.6 3 2.6-1.3 2.6-3-1.1-3-2.6-3zm0 4.7c-.7 0-1.3-.7-1.3-1.7s.6-1.7 1.3-1.7 1.3.7 1.3 1.7-.6 1.7-1.3 1.7z"/></svg>
|
Before Width: | Height: | Size: 462 B |
12
public/images/stroke-icons/icon-api.svg
Executable file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-api" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#9D9D9D;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<path id="api" class="st0" d="M13.676,5.327h-1.153V3.156c0-0.494-0.329-0.906-0.824-0.906H9.147c-0.412,0-0.824,0.412-0.824,0.906
|
||||
v2.171H6.429V3.156c0-0.494-0.329-0.906-0.824-0.906h-2.47c-0.412,0-0.824,0.412-0.824,0.906v2.171H1.324
|
||||
C0.912,5.327,0.5,5.739,0.5,6.233v5.076c0,0.494,0.329,0.906,0.824,0.906h12.353c0.412,0,0.824-0.412,0.824-0.906V6.233
|
||||
C14.5,5.739,14.171,5.327,13.676,5.327z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 874 B |
12
public/images/stroke-icons/icon-arrowdown.svg
Executable file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-arrowdown" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="arrowdown">
|
||||
<line class="st0" x1="7.549" y1="0.5" x2="7.549" y2="13.424"/>
|
||||
<polyline class="st0" points="13.098,8.951 7.549,14.5 2,8.951 "/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 645 B |
9
public/images/stroke-icons/icon-arrowtabs-teal.svg
Executable file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-arrowtabs" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#3eaaaf;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<polyline id="arrowtabs" class="st0" points="4.32,0.5 10.567,7.442 4.32,14.5 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 570 B |
9
public/images/stroke-icons/icon-arrowtabs.svg
Executable file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-arrowtabs" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#9D9D9D;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<polyline id="arrowtabs" class="st0" points="4.32,0.5 10.567,7.442 4.32,14.5 "/>
|
||||
</svg>
|
After Width: | Height: | Size: 570 B |
23
public/images/stroke-icons/icon-broadcast.svg
Executable file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-broadcast" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 15 21.625" style="enable-background:new 0 0 15 21.625;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#9D9D9D;stroke-width:0.8;stroke-miterlimit:10;}
|
||||
.st1{fill:none;stroke:#9D9D9D;stroke-width:0.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="tower">
|
||||
<circle class="st0" cx="7.503" cy="6.733" r="1.775"/>
|
||||
<polyline class="st1" points="8.303,8.508 13.627,21.206 4.728,14.441 "/>
|
||||
<polyline class="st1" points="6.828,8.508 1.528,21.206 10.427,14.441 "/>
|
||||
<line class="st1" x1="7.5" y1="8.508" x2="7.5" y2="20.673"/>
|
||||
</g>
|
||||
<g id="outer-waves">
|
||||
<path class="st1" d="M2.454,11.81C1.247,10.557,0.5,8.859,0.5,6.981c0-2.936,1.812-5.441,4.375-6.481"/>
|
||||
<path class="st1" d="M12.668,11.668C13.8,10.43,14.5,8.792,14.5,6.981c0-2.936-1.812-5.441-4.375-6.481"/>
|
||||
</g>
|
||||
<g id="inner-waves">
|
||||
<path class="st1" d="M3.751,9.161C3.356,8.506,3.123,7.743,3.123,6.922c0-1.836,1.133-3.402,2.735-4.052"/>
|
||||
<path class="st1" d="M11.339,8.986c0.336-0.615,0.537-1.313,0.537-2.064c0-1.836-1.133-3.402-2.735-4.052"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
16
public/images/stroke-icons/icon-builds.svg
Executable file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-builds" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#9D9D9D;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
</style>
|
||||
<g id="builds">
|
||||
<path id="Path_19_" class="st0" d="M11.553,11.153c0,0.663,0.589,1.216,1.289,1.105c0.442-0.074,0.811-0.442,0.884-0.884
|
||||
c0.111-0.553-0.221-1.032-0.663-1.216c-0.258-0.111-0.405-0.368-0.405-0.663v-3.26"/>
|
||||
<path id="Stroke-2_19_" class="st0" d="M0.868,5.867c-0.221,0-0.368-1.75-0.368-1.75c0-0.221,0.147-0.442,0.332-0.479L3.448,2.68
|
||||
h3.193l7.491,1.032c0.221,0.036,0.368,0.22,0.368,0.404c0,0-0.184,1.75-0.368,1.75L0.868,5.867L0.868,5.867z M6.635,14.469V1.206
|
||||
c0-0.221-1.161-0.405-1.345-0.442L3.816,0.506C3.632,0.469,3.447,0.616,3.447,0.8v13.632h2.211L6.635,14.469z M8.845,14.469H1.237
|
||||
H8.845z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
24
public/images/stroke-icons/icon-calendar.svg
Executable file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="icon-calendar" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
|
||||
y="0px" viewBox="0 0 15 15" style="enable-background:new 0 0 15 15;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;stroke:#9D9D9D;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
||||
.st1{fill:#9D9D9D;}
|
||||
</style>
|
||||
<g id="calendar">
|
||||
<rect x="0.8" y="0.5" class="st0" width="13.359" height="14"/>
|
||||
<line class="st0" x1="14.052" y1="4.561" x2="1.121" y2="4.561"/>
|
||||
<path class="st1" d="M4.319,11.176c0.286-0.267,0.548-0.517,0.785-0.75c0.237-0.232,0.441-0.45,0.613-0.655
|
||||
c0.171-0.204,0.305-0.394,0.401-0.57s0.144-0.344,0.144-0.503c0-0.22-0.056-0.388-0.169-0.503C5.981,8.079,5.825,8.022,5.628,8.022
|
||||
c-0.164,0-0.31,0.046-0.436,0.137C5.066,8.251,4.945,8.357,4.833,8.48L4.27,7.923c0.22-0.235,0.446-0.412,0.675-0.531
|
||||
c0.23-0.119,0.505-0.18,0.824-0.18c0.22,0,0.421,0.034,0.602,0.102c0.18,0.068,0.336,0.164,0.468,0.288
|
||||
C6.971,7.728,7.072,7.877,7.142,8.05c0.07,0.174,0.106,0.369,0.106,0.584c0,0.187-0.04,0.379-0.12,0.574
|
||||
c-0.079,0.195-0.186,0.389-0.32,0.584c-0.134,0.195-0.286,0.389-0.458,0.584c-0.172,0.195-0.349,0.386-0.532,0.574
|
||||
c0.113-0.014,0.238-0.027,0.377-0.039c0.139-0.012,0.261-0.018,0.37-0.018h0.901v0.873H4.319V11.176z"/>
|
||||
<path class="st1" d="M8.997,10.743c0.049-0.312,0.119-0.61,0.211-0.894S9.417,9.287,9.56,9.015
|
||||
c0.144-0.272,0.321-0.554,0.532-0.845H8.086V7.297h3.112V7.93c-0.258,0.315-0.466,0.609-0.623,0.884
|
||||
c-0.158,0.274-0.28,0.559-0.367,0.852s-0.149,0.608-0.186,0.943c-0.038,0.336-0.066,0.721-0.084,1.158H8.895
|
||||
C8.914,11.397,8.948,11.055,8.997,10.743z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |