commit stringlengths 40 40 | old_file stringlengths 10 91 | new_file stringlengths 10 91 | old_contents stringlengths 0 1.61k | new_contents stringlengths 86 2.17k | subject stringlengths 20 182 | message stringlengths 21 517 | lang stringclasses 1
value | license stringclasses 9
values | repos stringlengths 8 2.98k |
|---|---|---|---|---|---|---|---|---|---|
f06faeeb9ed7087b2538e6b58f6e38d046571176 | stylus/mixins.styl | stylus/mixins.styl | // Mixins
// --------------------------------------------------
vendors = official
percentage($n)
if $n == 0
0
else
unit($n * 100, "%")
// Utilities
@import "mixins/hide-text"
@import "mixins/opacity"
@import "mixins/image"
@import "mixins/labels"
@import "mixins/reset-filter"
@import "mixins/resize"
@import "mixins/responsive-visibility"
@import "mixins/size"
@import "mixins/tab-focus"
@import "mixins/text-emphasis"
@import "mixins/text-overflow"
@import "mixins/vendor-prefixes"
// Components
@import "mixins/alerts"
@import "mixins/buttons"
@import "mixins/panels"
@import "mixins/pagination"
@import "mixins/list-group"
@import "mixins/nav-divider"
@import "mixins/forms"
@import "mixins/progress-bar"
@import "mixins/table-row"
// Skins
@import "mixins/background-variant"
@import "mixins/border-radius"
@import "mixins/gradients"
// Layout
@import "mixins/clearfix"
@import "mixins/center-block"
@import "mixins/nav-vertical-align"
@import "mixins/grid-framework"
@import "mixins/grid"
| // Mixins
// --------------------------------------------------
vendors ?= official
percentage($n)
if $n == 0
0
else
unit($n * 100, "%")
// Utilities
@import "mixins/hide-text"
@import "mixins/opacity"
@import "mixins/image"
@import "mixins/labels"
@import "mixins/reset-filter"
@import "mixins/resize"
@import "mixins/responsive-visibility"
@import "mixins/size"
@import "mixins/tab-focus"
@import "mixins/text-emphasis"
@import "mixins/text-overflow"
@import "mixins/vendor-prefixes"
// Components
@import "mixins/alerts"
@import "mixins/buttons"
@import "mixins/panels"
@import "mixins/pagination"
@import "mixins/list-group"
@import "mixins/nav-divider"
@import "mixins/forms"
@import "mixins/progress-bar"
@import "mixins/table-row"
// Skins
@import "mixins/background-variant"
@import "mixins/border-radius"
@import "mixins/gradients"
// Layout
@import "mixins/clearfix"
@import "mixins/center-block"
@import "mixins/nav-vertical-align"
@import "mixins/grid-framework"
@import "mixins/grid"
| Make the "vendors" variable overridable | Make the "vendors" variable overridable
This fix will allow developers to front-load the `vendors` variable with a different value and prevent `bootstrap-stylus` from overriding the one that was previously set. | Stylus | mit | maxmx/bootstrap-stylus |
e2f877f9b7b4aea38f4b69a2b6e5976dbae6c220 | client-src/common/stylus/resource-list-item.styl | client-src/common/stylus/resource-list-item.styl | .resource-list-item
content-padding()
font-size 16px
border-bottom 1px solid #eee
height 40px
line-height 40px
transition height 0.25s
overflow hidden
display flex
align-items center
+respond-above($md-screen)
padding 0
&.resource-list-item-enter,
&.resource-list-item-leave.resource-list-item-leave-active
height 0
&.resource-list-item-enter.resource-list-item-enter-active,
&.resource-list-item-leave
height 40px
&:first-child
border-top 1px solid #eee
.resource-list-item-delete
font-size 15px
color #b5b5b5
cursor pointer
margin-left auto
&:hover
color #888
&:active,
&:focus
outline none
color #555
+respond-above($md-screen)
margin-right 0
&[disabled]
color #dfdfdf
| .resource-list-item
content-padding()
font-size 16px
border-bottom 1px solid #eee
height 40px
line-height 40px
transition height 0.25s, opacity 0.25s
overflow hidden
display flex
opacity 1
align-items center
+respond-above($md-screen)
padding 0
&.resource-list-item-enter,
&.resource-list-item-leave.resource-list-item-leave-active
height 0
&.resource-list-item-leave.resource-list-item-leave-active
opacity 0
&.resource-list-item-enter.resource-list-item-enter-active,
&.resource-list-item-leave
height 40px
&:first-child
border-top 1px solid #eee
.resource-list-item-delete
font-size 15px
color #b5b5b5
cursor pointer
margin-left auto
&:hover
color #888
&:active,
&:focus
outline none
color #555
+respond-above($md-screen)
margin-right 0
&[disabled]
color #dfdfdf
| Update animation for resource items being deleted | Update animation for resource items being deleted
They now fade out as they slide up
| Stylus | mit | jmeas/finance-app,jmeas/moolah,jmeas/finance-app,jmeas/moolah |
23708e54890d7a474f6aabe398fc2b09109ccdb0 | app/templates/lib/theme.styl | app/templates/lib/theme.styl | // Bespoke Classes: https://github.com/markdalgleish/bespoke-classes#classes
// Stylus: http://learnboost.github.io/stylus
@import 'normalizecss/normalize.css'
.bespoke-parent
position: absolute
top: 0
left: 0
right: 0
bottom: 0
.bespoke-slide
width: 640px
height: 480px
position: absolute
top: 50%
left: 50%
margin-left: -(@width / 2)
margin-top: -(@height / 2)
display: flex
flex-direction: column
justify-content: center
align-items: center
.bespoke-inactive
opacity: 0
pointer-events: none
.bespoke-bullet-inactive
opacity: 0
.emphatic
background: #222
color: white
.bespoke-progress-parent
position: absolute
top: 0
left: 0
right: 0
height: .3vw
.bespoke-progress-bar
position: absolute
height: 100%
background: #ccc
transition: width .6s ease
| // Bespoke Classes: https://github.com/markdalgleish/bespoke-classes
// Stylus: http://learnboost.github.io/stylus
@import 'normalizecss/normalize.css'
.bespoke-parent
position: absolute
top: 0
left: 0
right: 0
bottom: 0
.bespoke-slide
width: 640px
height: 480px
position: absolute
top: 50%
left: 50%
margin-left: -(@width / 2)
margin-top: -(@height / 2)
display: flex
flex-direction: column
justify-content: center
align-items: center
.bespoke-inactive
opacity: 0
pointer-events: none
.bespoke-bullet-inactive
opacity: 0
.emphatic
background: #222
color: white
.bespoke-progress-parent
position: absolute
top: 0
left: 0
right: 0
height: .3vw
.bespoke-progress-bar
position: absolute
height: 100%
background: #ccc
transition: width .6s ease
| Remove hash from bespoke-classes link | Remove hash from bespoke-classes link | Stylus | mit | bespokejs/generator-bespoketheme,markdalgleish/generator-bespoketheme |
99a16ae62976050f4a3e0a4906d00e5f053340b8 | src/desktop/assets/experimental-app-shell.styl | src/desktop/assets/experimental-app-shell.styl | @require '../components/buyers_premium'
@require '../components/view_in_room'
.modalize-body
padding 30px
| @require '../components/buyers_premium'
@require '../components/view_in_room'
@require '../components/inquiry_questionnaire/stylesheets'
.modalize-body
padding 30px
| Fix CSS in client side routing app context | [Inquiry] Fix CSS in client side routing app context
| Stylus | mit | izakp/force,eessex/force,artsy/force,eessex/force,artsy/force,joeyAghion/force,oxaudo/force,erikdstock/force,eessex/force,artsy/force,izakp/force,damassi/force,erikdstock/force,yuki24/force,erikdstock/force,damassi/force,damassi/force,anandaroop/force,joeyAghion/force,izakp/force,joeyAghion/force,yuki24/force,damassi/force,oxaudo/force,yuki24/force,artsy/force-public,anandaroop/force,izakp/force,eessex/force,erikdstock/force,anandaroop/force,joeyAghion/force,artsy/force,oxaudo/force,oxaudo/force,artsy/force-public,anandaroop/force,yuki24/force |
af4aca741cdbceed34660fd6daeb472e0b32a817 | css/project-card.styl | css/project-card.styl | .project-card-list
@extends $owned-card-list
.project-card
@extends $owned-card
.project-card
border-radius: 1em
height: 270px
position: relative
text-align: center
svg
height: 215px
.details
position: absolute
bottom: 0
left: 0
right: 0
height: 60px
justify-content: space-between
transition: height 0.5s ease
.name
text-transform: uppercase
letter-spacing: 1px
font-weight: 700
font-size: 11px
color: COPY
span
display: inline-block
line-height: normal
vertical-align: middle
.description
color: COPY
font-size: 0.9em
height: 150px
margin: 0.8em 0
overflow: hidden
text-align: center
.card-button
display: none
:hover > &,
:focus > &
.details
height: 175px
| .project-card-list
@extends $owned-card-list
.project-card
@extends $owned-card
.project-card
background-color: white
height: 270px
position: relative
text-align: center
svg
height: 215px
.details
position: absolute
bottom: 0
left: 0
right: 0
height: 60px
justify-content: space-between
transition: height 0.5s ease
.name
text-transform: uppercase
letter-spacing: 1px
font-weight: 700
font-size: 11px
color: COPY
span
display: inline-block
line-height: normal
vertical-align: middle
.description
color: COPY
font-size: 0.9em
height: 150px
margin: 0.8em 0
overflow: hidden
text-align: center
.card-button
display: none
:hover > &,
:focus > &
.details
height: 175px
| Remove border radius from Project Cards. | Remove border radius from Project Cards.
| Stylus | apache-2.0 | zooniverse/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,jelliotartz/Panoptes-Front-End |
f25e9ea706478faaddf2be84ad27aeb925f6d0eb | styl/FlexBox.styl | styl/FlexBox.styl | .box-horizontal {
box-horizontal();
}
.box-vertical {
box-vertical();
}
.box-center {
box-center();
}
.box-center-main {
box-center-main();
}
.box-center-cross {
box-center-cross();
}
.flex-none {
flex: none !important;
}
// Bug in stylus "cannot coerce !important to unit" when using !important on numbers
.flex-1 {
flex: 1;
}
.flex-2 {
flex: 2;
}
.flex-3 {
flex: 3;
}
.flex-4 {
flex: 4;
}
.flex-5 {
flex: 5;
}
.flex-6 {
flex: 6;
}
.flex-7 {
flex: 7;
}
.flex-8 {
flex: 8;
}
.flex-9 {
flex: 9;
}
.flex-10 {
flex: 10;
}
| .box-horizontal {
box-horizontal();
}
.box-vertical {
box-vertical();
}
.box-center {
box-center();
}
.box-center-main {
box-center-main();
}
.box-center-cross {
box-center-cross();
}
.flex-none {
flex: none !important;
box-flex: 0 !important;
}
// Bug in stylus "cannot coerce !important to unit" when using !important on numbers
.flex-1 {
flex: 1;
}
.flex-2 {
flex: 2;
}
.flex-3 {
flex: 3;
}
.flex-4 {
flex: 4;
}
.flex-5 {
flex: 5;
}
.flex-6 {
flex: 6;
}
.flex-7 {
flex: 7;
}
.flex-8 {
flex: 8;
}
.flex-9 {
flex: 9;
}
.flex-10 {
flex: 10;
}
| Fix .flex-none for iOS 6.1~ | Fix .flex-none for iOS 6.1~
| Stylus | bsd-2-clause | lazd/iOCSS |
cb2d85b4f4d47ffc527d28be1a76fea3b157397c | tamia/classes.styl | tamia/classes.styl | // Tâmia © 2013 Artem Sapegin http://sapegin.me
// Helper classes
// Element is hidden.
.is-hidden
display: none
/// Element is in transit between hidden (.is-hidden) and visible.
.is-transit
display: block
// Disabled form element.
.is-disabled
cursor: default
pointer-events: none
opacity: .4
text-shadow: none
// Image replacement.
.ir
background-color: transparent
border: 0
overflow: hidden
&:before
content: ""
display: block
width: 0
height: 150%
// Clearfix.
.group
clearfix()
| // Tâmia © 2013 Artem Sapegin http://sapegin.me
// Helper classes
// Element is hidden.
.is-hidden
display: none
/// Element is in transit between hidden (.is-hidden) and visible.
.is-transit
display: block
&.l-center
display: table
// Disabled form element.
.is-disabled
cursor: default
pointer-events: none
opacity: .4
text-shadow: none
// Image replacement.
.ir
background-color: transparent
border: 0
overflow: hidden
&:before
content: ""
display: block
width: 0
height: 150%
// Clearfix.
.group
clearfix()
| Fix .l-center appearing and disappearing. | Fix .l-center appearing and disappearing.
| Stylus | mit | tamiadev/tamia,tamiadev/tamia |
bdf8787e4a50f44ada461be16c98e3d67079729f | src/web/widgets/Laser/index.styl | src/web/widgets/Laser/index.styl | .widget-content {
position: relative;
padding: 10px;
&.hidden {
display: none;
}
.dro-display {
border: 1px solid #ccc;
text-align: right;
padding: 5px 10px;
font-size: 18px;
font-weight: bold;
margin-right: 5px;
}
.dro-btn-group {
margin-left: 5px;
}
}
| .widget-content {
position: relative;
padding: 10px;
&.hidden {
display: none;
}
.dro-display {
border: 1px solid #ccc;
text-align: right;
padding: 5px 10px;
height: 32px;
font-size: 18px;
font-weight: bold;
margin-right: 5px;
}
.dro-btn-group {
margin-left: 5px;
}
}
| Set default height to 32px | Set default height to 32px
| Stylus | mit | cncjs/cncjs,cheton/cnc,cheton/cnc.js,cncjs/cncjs,cheton/cnc.js,cheton/piduino-grbl,cheton/piduino-grbl,cheton/cnc,cheton/piduino-grbl,cheton/cnc.js,cncjs/cncjs,cheton/cnc |
f94ec6d9b4931de8ec0f73b4a247819e0dd46e04 | apps/home/stylesheets/howitworks.styl | apps/home/stylesheets/howitworks.styl | mobile_breakpoint = 1024px
.HomeHowItWorks.HomeSection__content
padding 0 0 4em
.HomeHowItWorks
border-top 1px solid colors-gray-border
border-bottom @border-top
&__carousel
height 600px
width 100%
+below(mobile_breakpoint)
.HomeHowItWorks
&__carousel
height 400px | mobile_breakpoint = 1024px
.HomeHowItWorks.HomeSection__content
padding 2em 0 3em
.HomeHowItWorks
border-top 1px solid colors-gray-border
border-bottom @border-top
&__carousel
height 600px
width 100%
+below(mobile_breakpoint)
.HomeHowItWorks
&__carousel
height 400px | Update how it works padding | Update how it works padding
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
1a010b0fd04da7a556c10dc9500498e944caf454 | stylus/pages/index.styl | stylus/pages/index.styl | .posts
ul
display table
width 100%
li
display table-row
left 0
@media not all and (max-width bp-small)
&:not(:last-child)
a, small
border-bottom 1px solid invisiblegrey
a, small
display table-cell
small
color midgrey
text-align right
@media all and (max-width bp-small)
display none
| .posts
li
display flex
// Unset general `li` styling.
left 0
padding-right 0
justify-content space-between
@media all and (max-width bp-small)
margin-bottom .5em
flex-direction column-reverse
li:not(:last-child)
border-bottom 1px solid invisiblegrey
small
color midgrey
@media not all and (max-width bp-small)
text-align right
| Use flex for posts list | Use flex for posts list
| Stylus | unlicense | valeriangalliat/blog,valeriangalliat/blog,valeriangalliat/blog |
5f5b055de6247ecb47bedf55eaffc5a68414a97e | apps/home/stylesheets/quotes.styl | apps/home/stylesheets/quotes.styl | mobile_breakpoint = 1024px
.HomeQuotes
margin-bottom 1em
&__cta&__cta
margin-top 1em
&__quote
display flex
flex-direction row
width 100%
margin 3em 0
&:hover
color colors-gray-text
&__icon
width 100px
margin-right 1em
text-align center
> img
width 70%
&__copy
font-family 'Courier New', Courier, monospace
font-weight bold
font-size font-size-base
line-height line-height-tall
max-width 475px
> span
background-color colors-state-highlighted
+below(mobile_breakpoint)
.HomeQuotes
&__quote
padding 0 2em
&__copy
font-size font-size-base
| mobile_breakpoint = 1024px
.HomeQuotes
margin-bottom 1em
&__cta&__cta
margin-top 1em
&__quote
display flex
flex-direction row
width 100%
margin 3em 0
&:hover .HomeQuotes__copy
color colors-gray-text
opacity 0.8
&__icon
width 100px
margin-right 1em
text-align center
> img
width 70%
&__copy
font-family 'Courier New', Courier, monospace
font-weight bold
font-size font-size-base
line-height line-height-tall
max-width 475px
> span
background-color colors-state-highlighted
+below(mobile_breakpoint)
.HomeQuotes
&__quote
padding 0 2em
&__copy
font-size font-size-base
| Add hover state to quote copy | Add hover state to quote copy
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
ec0171ade989977341cf5d0431bb7f2565e3ead9 | client/stylesheets/master.styl | client/stylesheets/master.styl | html, body, #game
width: 100%
height: 100%
overflow: hidden
#game
background: #111
#interface
position: fixed
top: 0
width: 100%
height: 100%
.toggle-states
position: absolute
top: 0
width: 100%
height: 100px
text-align: right
padding: 10px
.reticle
position: absolute
width: 30px
height: @width
left: 50%
top: 50%
-webkit-transform: translate3d(-50%, -50%, 0)
transform: translate3d(-50%, -50%, 0)
border: 2px solid #ddd
border-radius: 999px
opacity: 0
-webkit-transition: opacity .3s ease
transition: opacity .3s ease
&.active
opacity: 1 | @import 'nib'
html, body, #game
width: 100%
height: 100%
overflow: hidden
#game
background: #111
#interface
position: fixed
top: 0
width: 100%
height: 100%
.toggle-states
position: absolute
top: 0
width: 100%
height: 100px
text-align: right
padding: 10px
.reticle
position: absolute
width: 30px
height: @width
left: 50%
top: 50%
transform: translate3d(-50%, -50%, 0)
border: 2px solid #ddd
border-radius: 999px
opacity: 0
transition: opacity .3s ease
&.active
opacity: 1 | Add nib for css autoprefixing. | Add nib for css autoprefixing.
| Stylus | mit | tvararu/NEBUL4 |
06beabeb5f3e89bbc113fd87e757a901f8d271ef | src/styles/components/Search.styl | src/styles/components/Search.styl | .search-container
height: 100%
display: flex
flex-direction: column
align-items: center
justify-content: space-evenly
.input-container
input[type=text]
width: 360px
padding: 10px
border-radius: 4px
border: 1px solid rgba(0,0,0,0)
background: #ccc
transition: all 0.3s
box-shadow: 2px 2px 10px rgba(0,0,0, 0.3)
&:hover,
&:focus
box-shadow: 3px 4px 16px rgba(0,0,0,0.49)
&:focus
border: 1px solid rgba(0,0,0,0.3)
.button-container
width: fit-content
.btn
text-align: center
@media (max-width: 400px)
.input-container
margin: 15px 0
.button-container
margin: 12px 0
| .search-container
height: 100%
display: flex
flex-direction: column
align-items: center
justify-content: space-evenly
.input-container
input[type=text]
width: 360px
padding: 10px
border-radius: 4px
border: 1px solid rgba(0,0,0,0)
background: #ccc
transition: all 0.3s
box-shadow: 2px 2px 10px rgba(0,0,0, 0.3)
&:hover,
&:focus
box-shadow: 3px 4px 16px rgba(0,0,0,0.49)
&:focus
border: 1px solid rgba(0,0,0,0.3)
.button-container
width: fit-content
.btn
text-align: center
@media (max-width: 400px)
.input-container
margin: 20px 0
input[type=text]
max-width: 250px
.button-container
margin-bottom: 20px
| Fix size of input for mobile | Fix size of input for mobile
| Stylus | mit | IvaPetkova/My-HTML-Projects |
265d877407079e118013fe616884f41478c85cd5 | src/stylus/components/tabbed-panel.styl | src/stylus/components/tabbed-panel.styl | .tabbed-panel
enable-flex(justify:flex-start, alignContent:stretch, alignItems:stretch)
width 636px
border-radius 5px
.workspace-tabs
width 30%
width dialog-tab-width
padding 20px 0
margin 0px
background-color: white
ul
margin 0
margin-right -1px
list-style none
padding-left 10px
max-height 300px
overflow-x hidden
overflow-y auto
li
blenderbox-modal-labels()
font-size 15px
-webkit-border-radius tab-border-radius
-moz-border-radius tab-border-radius
border-radius: tab-border-radius
margin 10px 16px 10px 6px
padding 10px
color #000
background-color #c8e7de
cursor pointer
&.tab-selected
color #fff
background-color #72bca6
&.tab-link-defined
-webkit-border-top-right-radius 0
-webkit-border-bottom-right-radius 0
-moz-border-radius-topright 0
-moz-border-radius-bottomright 0
border-top-right-radius 0
border-bottom-right-radius 0
margin-right 0
&.tab-divider
background-color #72bca6
padding 1px
cursor default
.workspace-tab-component
margin 0px
width 70%
border-left 5px solid #72bca6
padding 10px
padding-bottom 20px
| .tabbed-panel
enable-flex(justify:flex-start, alignContent:stretch, alignItems:stretch)
width 636px
border-radius 5px
.workspace-tabs
width 30%
width dialog-tab-width
padding 20px 0
margin 0px
background-color: white
ul
margin 0
margin-right -1px
list-style none
padding-left 10px
overflow-x hidden
overflow-y auto
li
blenderbox-modal-labels()
font-size 15px
-webkit-border-radius tab-border-radius
-moz-border-radius tab-border-radius
border-radius: tab-border-radius
margin 10px 16px 10px 6px
padding 10px
color #000
background-color #c8e7de
cursor pointer
&.tab-selected
color #fff
background-color #72bca6
&.tab-link-defined
-webkit-border-top-right-radius 0
-webkit-border-bottom-right-radius 0
-moz-border-radius-topright 0
-moz-border-radius-bottomright 0
border-top-right-radius 0
border-bottom-right-radius 0
margin-right 0
&.tab-divider
background-color #72bca6
padding 1px
cursor default
.workspace-tab-component
margin 0px
width 70%
border-left 5px solid #72bca6
padding 10px
padding-bottom 20px
| Make left tab panel as tall as model panel | Make left tab panel as tall as model panel | Stylus | mit | concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models |
7dd10009c18422c23d30cbd1aba4277fda2bd420 | src/styles/main.styl | src/styles/main.styl | *, *:before, *:after
box-sizing border-box
body
font-family Arial, Helvetica, sans-serif
color #333
background-color #fff
margin 0
padding 0
header
color #fff
background #0066bb url(../images/reactjs.png) no-repeat right 10px
background-size contain
h1
display inline-block
padding 0 20px
a
display inline-block
margin 10px
padding 10px
color #fff
text-decoration none
border-radius 3px
&.active,
&:hover
background-color #0085F3
section
padding 20px
| *, *:before, *:after
box-sizing border-box
body
font-family Arial, Helvetica, sans-serif
color #333
background-color #fff
margin 0
padding 0
header
color #fff
background #0066bb url(../images/reactjs.png) no-repeat right 10px
background-size contain
h1
display inline-block
padding 0 20px
a
display inline-block
margin 10px
padding 10px
color #fff
text-decoration none
border-radius 3px
&.active,
&:hover
background-color #0085F3
section
padding 20px
| Fix indentation on section in default stylesheet | Fix indentation on section in default stylesheet | Stylus | apache-2.0 | zooniverse/wildcam-gorongosa-education,zooniverse/zoo-react-starterify,zooniverse/wildcam-gorongosa-education,zooniverse/notes-from-nature-landing,zooniverse/zoo-react-starterify,AdlerPlanetarium/pluto-poll,AdlerPlanetarium/pluto-poll,zooniverse/notes-from-nature-landing |
ff615ae767da8861295fd03d0929d1460e5632bf | src/app/components/activity/feed/devlog-post/devlog-post.styl | src/app/components/activity/feed/devlog-post/devlog-post.styl | .devlog-post
// This is hardcoded.
// If any spacing is changed, this may be invalid.
$devlog-post-game-thumb-width = 120px
&-game
position: absolute
right: 10px
top: 10px
width: $devlog-post-game-thumb-width
border: 2px solid $gray-light
&:hover
border-color: $white
.devlog-post-header-content
padding-right: $devlog-post-game-thumb-width + 20px
| .devlog-post
// This is hardcoded.
// If any spacing is changed, this may be invalid.
$devlog-post-game-thumb-width = 120px
&-game
display: none
position: absolute
right: 10px
top: 10px
width: $devlog-post-game-thumb-width
border: 2px solid $gray-light
@media $media-sm-up
display: block
&:hover
border-color: $white
@media $screen-sm-up
.devlog-post-header-content
padding-right: $devlog-post-game-thumb-width + 20px
| Fix mobile devlog post titles being too small | Fix mobile devlog post titles being too small
| Stylus | mit | gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt |
89320993ef109d414a4f1d35dd4ef4bb07b5f1b8 | src/app/components/activity/feed/devlog-post/devlog-post.styl | src/app/components/activity/feed/devlog-post/devlog-post.styl | .devlog-post
&-game
position: absolute
right: 10px
top: 10px
border: 2px solid $gray-light
// This is hardcoded.
// If any spacing is changed, this may be invalid. =\
width: 120px
&:hover
border-color: $white
.devlog-post-header-content
padding-right: 120px + 20px
| .devlog-post
// This is hardcoded.
// If any spacing is changed, this may be invalid.
$devlog-post-game-thumb-width = 120px
&-game
position: absolute
right: 10px
top: 10px
width: $devlog-post-game-thumb-width
border: 2px solid $gray-light
&:hover
border-color: $white
.devlog-post-header-content
padding-right: $devlog-post-game-thumb-width + 20px
| Fix for real. Amazingly the smiley was breaking stylus in the comment... =\ | Fix for real.
Amazingly the smiley was breaking stylus in the comment... =\
| Stylus | mit | gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt |
bd2a90f9dc1d0c9ea83cdcb6df14e77f920c0f7f | src/styles/components/d3.import.styl | src/styles/components/d3.import.styl |
.svg-center-x {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
padding-left: 50%;
}
.svg-padding-top {
padding-top: 1em;
}
.svg-padding-left {
padding-left: 1em;
}
pattern rect.background {
fill: none;
}
pattern rect.foreground {
fill: grey;
}
.reusable {
path {
fill: none;
stroke: black;
stroke-width: 1.5px;
stroke-linecap: round;
stroke-linejoin: round;
}
path.bgstroke {
stroke: white;
stroke-width: 3px;
}
}
@import 'd3-legend.import'
|
.svg-center-x {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
padding-left: 50%;
}
.svg-padding-top {
padding-top: 1em;
}
.svg-padding-left {
padding-left: 1em;
}
.reusable {
path {
fill: none;
stroke: black;
stroke-width: 1.5px;
stroke-linecap: round;
stroke-linejoin: round;
}
path.bgstroke {
stroke: white;
stroke-width: 3px;
}
}
@import 'd3-legend.import'
| Remove patterns styles these are handled directly. | Remove patterns styles these are handled directly. | Stylus | mit | redsift/ui-rs-core |
230ec4171e5e27d5dd251ccd1d9578d5b6be467a | source/stylesheets/components/session.styl | source/stylesheets/components/session.styl | /*
session
====================================================================== */
.session {
padding: $grid-gutter-width;
margin-bottom: 5px;
clearfix()
theme({
background-color: $theme-background
})
}
.session_summary {
display: none;
}
.session:target .session_summary {
display: block;
}
.session_speakers a {
display: block;
}
.session_pic {
display: flex;
margin-bottom: 10px;
img {
width: 100px;
}
}
@media $media-query-320-and-up {
.session_pic {
width: 60px;
float: right;
flex-direction: column;
margin-top: -2.1em;
margin-left: $grid-gutter-width;
}
}
@media $media-query-480-and-up {
.session_speakers a {
display: inline;
&::before {
content: "• ";
}
&:first-child::before {
content: "";
}
}
.session_pic {
width: auto;
}
}
@media $media-query-680-and-up {
.session_pic {
float: none;
flex-direction: row;
margin: 0;
img {
width: auto;
}
}
}
@media $media-query-960-and-up {
.session {
padding: $grid-gutter-width;
}
}
| /*
session
====================================================================== */
.session {
padding: $grid-gutter-width;
margin-bottom: 5px;
clearfix()
theme({
background-color: $theme-background
})
}
.session_summary {
display: none;
}
.session:target .session_summary {
display: block;
}
.session_speakers a {
display: block;
}
.session_pic {
display: flex;
margin-bottom: 10px;
img {
width: 100px;
}
}
@media $media-query-320-and-up {
.session_pic {
width: 60px;
float: right;
flex-direction: column;
margin-top: -2.1em;
margin-left: $grid-gutter-width;
}
}
@media $media-query-480-and-up {
.session_speakers a {
display: inline;
&::before {
content: "• ";
}
&:first-child::before {
content: "";
}
}
.session_pic {
width: 100%;
}
}
@media $media-query-680-and-up {
.session_pic {
float: none;
flex-direction: row;
margin: 0;
img {
width: auto;
}
}
}
@media $media-query-960-and-up {
.session {
padding: $grid-gutter-width;
}
}
| Fix bug on schedule page. | Fix bug on schedule page.
I hope.
| Stylus | mpl-2.0 | hoosteeno/viewsourceconf,mdn/viewsourceconf,mdn/viewsourceconf,mdn/viewsourceconf,hoosteeno/viewsourceconf,hoosteeno/viewsourceconf |
36638f23f6ab5f2af8932d4f004d00b74e95a0fd | imports/ui/components/main/main.styl | imports/ui/components/main/main.styl | @import '../../layouts/variables.styl'
@import '../../layouts/mixins.styl'
main
ol
li
pad-inline $default-padding
pad-block 0.5em
&:hover
background-color: $secondary-grey
table
width: 50%
tr
&:hover
background-color: $tertiary-grey
td
font-size: 80%
line-height: 1.5em
pad-block 0.25em
&:first-child
pad-inline-st 1em
&:not(:first-child)
color: $primary-red
font-weight: 700
main
> ol
> li
&:first-child
pad-block-st $default-padding
&:last-child
pad-block-end $default-padding
| @import '../../layouts/variables.styl'
@import '../../layouts/mixins.styl'
main
ol
li
pad-inline $default-padding
pad-block 0.5em
&:hover
background-color: $secondary-grey
table
width: 50%
tr
&:hover
background-color: $tertiary-grey
td
font-size: 80%
line-height: 1.5em
pad-block 0.25em
pad-inline 1em
&:first-child
white-space: nowrap
&:not(:first-child)
color: $primary-red
font-weight: 700
main
> ol
> li
&:first-child
pad-block-st $default-padding
&:last-child
pad-block-end $default-padding
| Add some spacing between table cells to avoid problems in small viewports. | Add some spacing between table cells to avoid problems in small viewports.
| Stylus | mit | LuisLoureiro/placard-wrapper |
36a12019151b205724d6d01656798a3307f9b46b | routes/edit/screens/App/screens/Project/components/ProjectPreview.styl | routes/edit/screens/App/screens/Project/components/ProjectPreview.styl | .container {
position: relative;
width: 60%;
height: 1100px;
}
.livePreviewWrapper {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
overflow: auto;
iframe {
width: 100%;
height: 100%;
}
}
| .container {
position: relative;
width: 60%;
}
.livePreviewWrapper {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
overflow: auto;
iframe {
width: 100%;
height: 100%;
}
}
| Make preview area's height dynamic | Make preview area's height dynamic
| Stylus | mit | Literasee/literasee,Literasee/literasee |
a40ffcea6d962e2d6a0f099b7e4aae7cd967ee06 | apps/home/stylesheets/quotes.styl | apps/home/stylesheets/quotes.styl | mobile_breakpoint = 1024px
.HomeQuotes
margin-bottom 6em
&__cta
margin-bottom 2em
&__quote
display flex
flex-direction row
width 100%
margin 3em 0
&__icon
width 120px
margin-right 1em
text-align center
> img
width 50%
&__copy
font-family 'Courier New', Courier, monospace
font-weight bold
font-size font-size-sm
line-height line-height-tall
max-width 475px
> span
background-color colors-state-highlighted
+below(mobile_breakpoint)
.HomeQuotes
&__quote
padding 0 2em
| mobile_breakpoint = 1024px
.HomeQuotes
margin-bottom 6em
&__cta
margin-bottom 2em
&__quote
display flex
flex-direction row
width 100%
margin 3em 0
&__icon
width 120px
margin-right 1em
text-align center
> img
width 50%
&__copy
font-family 'Courier New', Courier, monospace
font-weight bold
font-size font-size-sm
line-height line-height-tall
max-width 475px
> span
background-color colors-state-highlighted
+below(mobile_breakpoint)
.HomeQuotes
&__quote
padding 0 2em
&__copy
font-size font-size-base
| Increase quote size on mobile | Increase quote size on mobile
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
b90bcb13911c08ab129aa75215d290198bf626f5 | layouts/css/page-modules/_header.styl | layouts/css/page-modules/_header.styl | header
background-color $node-gray
text-align center
> .container
overflow visible
li
position relative
nav
a,
a:link,
a:active
padding 0 8px
text-transform uppercase
font-size 14px
color #ccc !important
a:hover
background-color transparent
text-decoration underline
@media screen and (min-width: 481px)
header
li
$border-width = 14px
padding-bottom 12px;
&.active:after
top 100%
left 50%
border solid rgba(0, 0, 0, 0)
content " "
height 0
width 0
position absolute
pointer-events none
border-color rgba(3, 3, 0, 0)
border-top-color $node-gray
border-width $border-width
margin-left -($border-width/2)px
&.active:first-child:after
margin-left -($border-width)px
a,
a:link,
a:active
padding 0 8px
@media screen and (max-width: 480px)
header
li
width 50%
float left
padding 0
margin 0
a,
a:link,
a:active
padding 0
#logo
display block
border none
&:hover
background-color transparent
text-decoration underline
img
display block
margin .5em auto 1em auto
width 9em
height auto
border none
| header
background-color $node-gray
text-align center
> .container
overflow visible
li
position relative
nav
a,
a:link,
a:active
padding 0 8px
text-transform uppercase
font-size 14px
color #ccc !important
a:hover
background-color transparent
text-decoration underline
@media screen and (min-width: 481px)
header
li
$border-width = 14px
padding-bottom 12px;
&.active:after
top 100%
left 50%
border solid rgba(0, 0, 0, 0)
content " "
height 0
width 0
position absolute
pointer-events none
border-color rgba(3, 3, 0, 0)
border-top-color $node-gray
border-width $border-width
margin-left -($border-width/2)px
&.active:first-child:after
margin-left -($border-width)px
a,
a:link,
a:active
padding 0 8px
@media screen and (max-width: 480px)
header
li
width 50%
float left
padding 0
margin 0
a,
a:link,
a:active
padding 0
#logo
display block
border none
&:hover
background-color transparent
text-decoration underline
img
display block
margin .5em auto 1em auto
border none
| Remove logo dimensions in CSS | Remove logo dimensions in CSS
| Stylus | mit | phillipj/new.nodejs.org,boneskull/new.nodejs.org,targos/new.nodejs.org,MassimilianoMura/new.nodejs.org,abdelrahmansaeedhassan/yuri,evanlucas/new.nodejs.org,Gornstats/new.nodejs.org,strawbrary/nodejs.org,matthewloring/new.nodejs.org,targos/new.nodejs.org,yous/new.nodejs.org,marocchino/new.nodejs.org,wonderdogone/new.nodejs.org,bogas04/new.nodejs.org,boneskull/new.nodejs.org,thefourtheye/new.nodejs.org,nodejs/new.nodejs.org,thefourtheye/new.nodejs.org,SomeoneWeird/new.nodejs.org,phillipj/new.nodejs.org,strawbrary/nodejs.org,bogas04/new.nodejs.org,MassimilianoMura/new.nodejs.org,evanlucas/new.nodejs.org,yous/new.nodejs.org,abdelrahmansaeedhassan/yuri,wonderdogone/new.nodejs.org,Gornstats/new.nodejs.org,matthewloring/new.nodejs.org,rnsloan/new.nodejs.org,brycebaril/new.nodejs.org,SomeoneWeird/new.nodejs.org,marocchino/new.nodejs.org,rnsloan/new.nodejs.org,nodejs/new.nodejs.org |
e80ad02083b961b0685c5ef8892a7cf3a30b79e4 | lib/stylus-mixins/helpers/col-span-width.styl | lib/stylus-mixins/helpers/col-span-width.styl | //
// COLUMN SPAN WIDTH
// =================
// Returns the width of a specified column span
//
$base--col-total ?= 12
$grid--gutter ?= 20px
$base--max-width ?= 1180px
col-span-width($col-span, $col-total = $base--col-total, $col-gutter = $grid--gutter, $max-width = $base--max-width)
if (unit($col-gutter) != unit($max-width))
error('Mismatched unit types for provided for col-span-width: ' + $col-gutter + ', ' + $max-width)
($max-width + $col-gutter) * $col-span / $col-total - $col-gutter
| //
// COLUMN SPAN WIDTH
// =================
// Returns the width of a specified column span
//
$base--col-total ?= 12
$grid--gutter ?= 20px
$base--max-width ?= 1180px
col-span-width($col-span, $col-total = $base--col-total, $col-gutter = $grid--gutter, $max-width = $base--max-width)
// Check gutter and max-width units match, but allow $col-gutter to be `0`
if (unit($col-gutter) != '' && unit($col-gutter) != unit($max-width))
error('Mismatched unit types for provided for col-span-width: ' + $col-gutter + ', ' + $max-width)
($max-width + $col-gutter) * $col-span / $col-total - $col-gutter
| Allow `0` as a valid gutter width | Allow `0` as a valid gutter width
| Stylus | isc | jackbrewer/stylus-mixins |
d61b15e60241b45d53be643807d242240574163f | app/core/styles/_ui.styl | app/core/styles/_ui.styl | input.error,
.textarea.error {
border-color: #B5313A;
}
[data-error] {
color: #B5313A;
}
.ui-no-events {
pointer-events: none;
}
.ui-no-scroll {
overflow: hidden;
}
.ui-avatar {
border-radius: 50%;
display: inline-block;
height: 32px;
margin-right: 5px;
width: 32px;
&.sm {
height: 22px;
width: 22px;
}
}
.ui-modal-alert {
background: #F5F5F5;
border-radius: 0 0 3px 3px;
display: none;
left: 50%;
margin-left: -142px;
text-align: center;
top: 0;
padding: 10px;
position: absolute;
width: 285px;
z-index: 1;
}
| input.error,
.textarea.error {
border-color: #B5313A;
}
[data-error] {
color: #B5313A;
}
.ui-no-events {
pointer-events: none;
}
.ui-no-scroll {
overflow: hidden;
}
.ui-avatar {
background: url('../images/loading-item.gif') no-repeat center center #FFFFFF;
border-radius: 50%;
display: inline-block;
height: 32px;
margin-right: 5px;
width: 32px;
&.sm {
height: 22px;
width: 22px;
}
}
.ui-modal-alert {
background: #F5F5F5;
border-radius: 0 0 3px 3px;
display: none;
left: 50%;
margin-left: -142px;
text-align: center;
top: 0;
padding: 10px;
position: absolute;
width: 285px;
z-index: 1;
}
| Add loading image to avatars while image loads. | Add loading image to avatars while image loads. | Stylus | agpl-3.0 | jessamynsmith/boards-web,GetBlimp/boards-web,jessamynsmith/boards-web |
9627822c91ad0ba785e6fd1c0b28ffe6c5c34384 | styles/Indicators/Badge.styl | styles/Indicators/Badge.styl | .fui-badge
display: inline-block
box-sizing: border-box
background: $badgeBackground
border-radius: $widgetBorderRadius * 2
padding: 2px 8px
min-width: 26px
color: $baseFontColor
white-space: nowrap // Numbers shouldn't wrap
font-weight: bold
font-size: $baseSize - 4
text-align: center
| .fui-badge
display: inline-block
box-sizing: border-box
background: $badgeBackground
border-radius: $widgetBorderRadius * 2
padding: 2px 8px
color: $baseFontColor
white-space: nowrap // Numbers shouldn't wrap
font-weight: bold
font-size: $baseSize - 4
text-align: center
| Fix badge width on IE | Fix badge width on IE
| Stylus | bsd-2-clause | lazd/fui |
a74ac77d4fdfe5d2a3ed23e83306f87f0358fae3 | apps/blog/stylesheets/show.styl | apps/blog/stylesheets/show.styl | .BlogPost
// Classes come through with Jekyll generated HTML
// Not going to bother with correcting *that*
// So for now, force things to look correct
.post
//
> .post-header
collapsed-margins(2em)
> .post-category-title
collapsed-margins(2em)
> h1
margin 0
text-align center
font-size font-size-h2
font-weight normal
> .post-author
> .post-meta
text-align center
font-size font-size-base
line-height line-height-base
> .post-author
font-weight bold
> .post-content
//
p
collapsed-margins(1em)
font-size font-size-base
line-height line-height-tall
> a
text-decoration underline
img
iframe
display block
max-width 100%
margin 4em auto
vertical-align bottom
border 1px solid colors-gray-border
| .BlogPost
// Classes come through with Jekyll generated HTML
// Not going to bother with correcting *that*
// So for now, force things to look correct
.post
//
> .post-header
collapsed-margins(2em)
> .post-category-title
collapsed-margins(2em)
> h1
margin 0
text-align center
font-size font-size-h2
font-weight normal
> .post-author
> .post-meta
text-align center
font-size font-size-base
line-height line-height-base
> .post-author
font-weight bold
> .post-content
//
p
collapsed-margins(1em)
font-size font-size-base
line-height line-height-tall
> a
text-decoration underline
img
iframe
display block
max-width 100%
margin 4em auto
vertical-align bottom
border 1px solid colors-gray-border
iframe
box-shadow 4px 4px 4px colors-gray-background
hr
border 1px solid colors-gray-border
margin 2.5em 2em
| Add hr and iframe shadow | Add hr and iframe shadow
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
e6acdd5c331f2604d4cab6622fdbb357d1e83ea6 | apps/show/stylesheets/header.styl | apps/show/stylesheets/header.styl | .show-header
.show-footer
display table
position relative
width 100%
margin 0 0 80px
table-layout fixed
.show-header-cell
.show-footer-cell
display table-cell
width 50%
vertical-align top
&:first-child
padding-right 40px
&:last-child
padding-left 40px
.show-header
&.has-carousel
margin-top 30px
.show-title
.show-partner
margin 15px 0
vertical-align bottom
line-height 1.2
.show-title
garamond-size('l-headline')
.show-description
.show-metadata
garamond-size('s-body')
> p
block-margins(10px)
.show-partner
display table
width 100%
position relative
// Roughly line up baseline
padding-top 10px
> .entity-with-follow
> .show-share
display table-cell
vertical-align top
> .show-share
padding-left 30px
text-align right
> a
vertical-align middle
.show-fair-link
text-decoration none
svg
height 18px
margin-left 2px
vertical-align -4px
&:hover
text-decoration underline
| .show-header
.show-footer
display table
position relative
width 100%
margin 0 0 80px
table-layout fixed
.show-header-cell
.show-footer-cell
display table-cell
width 50%
vertical-align top
&:first-child
padding-right 40px
&:last-child
padding-left 40px
.show-header
&.has-carousel
margin-top 30px
.show-title
.show-partner
margin 15px 0
vertical-align bottom
line-height 1.2
.show-title
garamond-size('l-headline')
.show-description
.show-metadata
garamond-size('s-body')
> p
block-margins(10px)
.show-partner
display table
width 100%
position relative
// Roughly line up baseline
padding-top 10px
> .entity-with-follow
> .show-share
display table-cell
vertical-align top
> .show-share
padding-left 30px
text-align right
> a
vertical-align middle
.show-fair-link
text-decoration none
svg
height 23px
width 23px
vertical-align -7px
&:hover
text-decoration underline
| Fix SVG styling on fair booth | Fix SVG styling on fair booth
| Stylus | mit | artsy/force-public,oxaudo/force,damassi/force,joeyAghion/force,dblock/force,izakp/force,mzikherman/force,eessex/force,damassi/force,artsy/force,dblock/force,damassi/force,dblock/force,cavvia/force-1,anandaroop/force,mzikherman/force,anandaroop/force,eessex/force,artsy/force,joeyAghion/force,xtina-starr/force,yuki24/force,yuki24/force,eessex/force,izakp/force,izakp/force,oxaudo/force,erikdstock/force,oxaudo/force,mzikherman/force,joeyAghion/force,artsy/force-public,artsy/force,anandaroop/force,kanaabe/force,oxaudo/force,erikdstock/force,artsy/force,cavvia/force-1,kanaabe/force,kanaabe/force,cavvia/force-1,xtina-starr/force,erikdstock/force,kanaabe/force,izakp/force,yuki24/force,damassi/force,cavvia/force-1,yuki24/force,TribeMedia/force-public,xtina-starr/force,joeyAghion/force,mzikherman/force,erikdstock/force,TribeMedia/force-public,kanaabe/force,xtina-starr/force,eessex/force,anandaroop/force |
a8e2c727ef4ae4f565aecaeb802f52cfa8ea4b6a | app/assets/stylesheets/modules/_stats.styl | app/assets/stylesheets/modules/_stats.styl | .main-page
h1
font-weight 300
margin-bottom 0
.stat-display
display inline-block
width 100%
margin 40px 0 20px 0
display flex
justify-content space
flex-flow wrap
.stat-display__stat
margin 0 20px 20px 20px
text-align center
width calc(50% - 40px)
+above(desktop)
margin 0 0 20px 0
width (1/6*100)%
.stat-display__value
font-family inherit
color $brand_primary
font-size 38px
margin 0
font-weight 300
small
color #aaa
font-size 1em
line-height 1
| .main-page
h1
font-weight 300
margin-bottom 0
.stat-display
display inline-block
width 100%
margin 40px 0 20px 0
display flex
justify-content space
flex-flow wrap
.stat-display__stat
margin 0 20px 20px 20px
text-align center
width calc(50% - 40px)
+above(desktop)
margin 0 0 20px 0
width (1/6*100)%
.stat-display__value
font-family inherit
color $brand_primary
font-size 38px
margin 0
font-weight 300
small
color #666
font-size 1em
line-height 1
| Update muted color of stats | Update muted color of stats
| Stylus | mit | alpha721/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,feelfreelinux/WikiEduDashboard,Wowu/WikiEduDashboard,Wowu/WikiEduDashboard,MusikAnimal/WikiEduDashboard,majakomel/WikiEduDashboard,adamwight/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,adamwight/WikiEduDashboard,majakomel/WikiEduDashboard,MusikAnimal/WikiEduDashboard,Wowu/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,sejalkhatri/WikiEduDashboard,MusikAnimal/WikiEduDashboard,Wowu/WikiEduDashboard,feelfreelinux/WikiEduDashboard,adamwight/WikiEduDashboard,sejalkhatri/WikiEduDashboard,KarmaHater/WikiEduDashboard,alpha721/WikiEduDashboard,KarmaHater/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,MusikAnimal/WikiEduDashboard,alpha721/WikiEduDashboard,alpha721/WikiEduDashboard,KarmaHater/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard |
3632b3dd0262767bbdf7a7ba9443b45594ee2da6 | src/web/containers/Workspace/widgets.styl | src/web/containers/Workspace/widgets.styl | .widgets {
min-height: 240px; // Keep a minimum space for dropping widgets
:global {
// Class name for the chosen item
.sortable-chosen {
opacity: .8;
}
// Class name for the drop placeholder
.sortable-ghost {
opacity: .4;
}
}
}
| .widgets {
min-height: 240px; // Keep a minimum space for dropping widgets
overflow-x: hidden;
:global {
// Class name for the chosen item
.sortable-chosen {
opacity: .8;
}
// Class name for the drop placeholder
.sortable-ghost {
opacity: .4;
}
}
}
| Set "overflow-x: hidden" to disable horizontal scrollbar for widget panes | Set "overflow-x: hidden" to disable horizontal scrollbar for widget panes
| Stylus | mit | cheton/piduino-grbl,cheton/piduino-grbl,cheton/cnc,cheton/cnc.js,cheton/cnc,cncjs/cncjs,cheton/piduino-grbl,cncjs/cncjs,cncjs/cncjs,cheton/cnc.js,cheton/cnc,cheton/cnc.js |
b7902d93f77823fdb7e44ba0ebf4b09a842e7e68 | src/styles/Header.styl | src/styles/Header.styl | @import './common/variables.styl'
@import './common/icons.styl'
.header
position: fixed
right: 0
left: 0
background-color: header-main-bg
display: flex
flex-flow: row nowrap
justify-content: flex-start
align-items: center
height: offset
z-index: 2
box-shadow: 0 2px 2px 0 border-dark
&-inner
display: flex
flex-flow: row nowrap
justify-content: space-between
align-items: center
width: "calc(100% - %s)" % offset
max-width: 1024px
&-logo
width: offset
height: offset
background-color: header-logo-bg
& a
display: flex
height: 100%
justify-content: center
align-items: center
& img
width: 78%
&-slogan
color:text-dark
font-family: font-raleway
font-size: 23px
font-weight: 600
margin-left: 19px
letter-spacing: .6px
&-x
color: text-green
&-sign-in
margin-right: 20px
& a
display: flex
align-items: center
text-decoration: none
& span
margin-right: 15px
font-family: font-quicksand
color: text-green
& i
font-size: 23px
margin-top: 6px
color: text-green
| @import './common/variables.styl'
@import './common/icons.styl'
.header
position: fixed
right: 0
left: 0
background-color: header-main-bg
display: flex
flex-flow: row nowrap
justify-content: flex-start
align-items: center
height: offset
z-index: 2
box-shadow: 0 2px 2px 0 border-dark
&-inner
display: flex
flex-flow: row nowrap
justify-content: space-between
align-items: center
width: "calc(100% - %s)" % offset
&-logo
width: offset
height: offset
background-color: header-logo-bg
& a
display: flex
height: 100%
justify-content: center
align-items: center
& img
width: 78%
&-slogan
color:text-dark
font-family: font-raleway
font-size: 23px
font-weight: 600
margin-left: 19px
letter-spacing: .6px
&-x
color: text-green
&-sign-in
margin-right: 20px
& a
display: flex
align-items: center
text-decoration: none
& span
margin-right: 15px
font-family: font-quicksand
color: text-green
& i
font-size: 23px
margin-top: 6px
color: text-green
| Remove max-width for header content | Remove max-width for header content
It was done to make header look natural on screens wider than 1024px
and to be aligned to main content
| Stylus | mit | xsnippet/xsnippet-web,xsnippet/xsnippet-web |
547dad768d5cbf6fac9a3f770bc0514875118413 | frontend/login_page/components/content.styl | frontend/login_page/components/content.styl | @require '_frontend/styles/colors'
@require '_frontend/styles/grid'
@require '_frontend/styles/spacing'
.form {
col(1/2, offset: 1/4)
background-color $white
border-radius 5px
margin-top $spacing2x
margin-bottom $spacing2x
padding $spacing2x
}
.section {
margin-bottom $spacing1x
}
.input {
border 1px solid $kindaLightGray
box-sizing border-box
color $darkGray
padding $spacingHalf
width 100%
}
| @require '_frontend/styles/colors'
@require '_frontend/styles/grid'
@require '_frontend/styles/spacing'
.form {
+desktop() {
col(1/2, offset: 1/4)
}
+tablet() {
margin-right $spacing2x
margin-left $spacing2x
}
+mobile() {
border-radius 0
}
background-color $white
border-radius 5px
margin-top $spacing2x
margin-bottom $spacing2x
padding $spacing2x
}
.section {
margin-bottom $spacing1x
}
.input {
border 1px solid $kindaLightGray
box-sizing border-box
color $darkGray
padding $spacingHalf
width 100%
}
| Fix styling on mobile page | Fix styling on mobile page
| Stylus | mit | golmansax/my-impact-pledge,golmansax/my-impact-pledge,golmansax/my-impact-pledge |
ef7f91683b6f4715f19c67e1b3995d3750061197 | app/account/styles/_item-actions.styl | app/account/styles/_item-actions.styl | .btn.item-action {
color: #9B9B9B !important;
font-size: 13px;
font-weight: bold;
&:hover,
&:focus,
&:active,
&:visited {
color: #555 !important;
text-decoration: none;
}
}
| .btn.item-action {
color: #9B9B9B !important;
font-size: 13px;
font-weight: bold;
&:hover,
&:focus,
&:active {
color: #555 !important;
text-decoration: none;
}
}
| Remove visited state for item-action buttons | Remove visited state for item-action buttons | Stylus | agpl-3.0 | GetBlimp/boards-web,jessamynsmith/boards-web,jessamynsmith/boards-web |
81d4250b3e22ebb68ba3aa9b91a97c438f2db6f7 | apps/artwork_2/components/partner/index.styl | apps/artwork_2/components/partner/index.styl | @require '../../../../components/inquiry_questionnaire/stylesheets'
.artwork-partner
display flex
block-margins(gutter / 2)
padding gutter 0
align-items center
&__icon
&__metadata
padding 0 (gutter / 2)
&__icon
&--icon
background-color white
> a
display block
width 90px
height @width
margin 0 auto
background-size contain
background-repeat no-repeat
background-position center center
initials()
&__metadata
border-left 1px solid gray-lighter-color
&__name
garamond-size('s-headline')
text-decoration none
&__locations
garamond-size('s-body')
color gray-dark-color
&__bio
margin (gutter / 4) 0 (gutter / 2) 0
garamond-size('s-body')
&__actions
margin-top (gutter / 2)
> a
> span
inline-block-margins(gutter / 4)
&__followers
garamond-size('l-caption')
color gray-dark-color
| @require '../../../../components/inquiry_questionnaire/stylesheets'
.artwork-partner
display flex
block-margins(gutter / 2)
padding gutter 0
align-items center
&__metadata
padding 0 (gutter / 2)
&__icon
padding-right (gutter / 2)
&--icon
background-color white
> a
display block
width 90px
height @width
background-size contain
background-repeat no-repeat
background-position center center
initials()
&__metadata
border-left 1px solid gray-lighter-color
&__name
garamond-size('s-headline')
text-decoration none
&__locations
garamond-size('s-body')
color gray-dark-color
&__bio
margin (gutter / 4) 0 (gutter / 2) 0
garamond-size('s-body')
&__actions
margin-top (gutter / 2)
> a
> span
inline-block-margins(gutter / 4)
&__followers
garamond-size('l-caption')
color gray-dark-color
| Remove left gallery icon padding | Remove left gallery icon padding
| Stylus | mit | anandaroop/force,mzikherman/force,yuki24/force,yuki24/force,damassi/force,dblock/force,anandaroop/force,oxaudo/force,artsy/force,erikdstock/force,xtina-starr/force,artsy/force,xtina-starr/force,izakp/force,cavvia/force-1,eessex/force,erikdstock/force,cavvia/force-1,kanaabe/force,oxaudo/force,artsy/force,yuki24/force,joeyAghion/force,xtina-starr/force,artsy/force-public,kanaabe/force,anandaroop/force,izakp/force,eessex/force,dblock/force,kanaabe/force,oxaudo/force,eessex/force,dblock/force,cavvia/force-1,yuki24/force,joeyAghion/force,anandaroop/force,artsy/force-public,damassi/force,damassi/force,mzikherman/force,xtina-starr/force,izakp/force,izakp/force,kanaabe/force,erikdstock/force,mzikherman/force,erikdstock/force,artsy/force,eessex/force,kanaabe/force,joeyAghion/force,mzikherman/force,damassi/force,joeyAghion/force,oxaudo/force,cavvia/force-1 |
51e7aa9b8196f4f700d1bf8c2ee1d09ce326b0a0 | praxis/typography.styl | praxis/typography.styl | //
// Typography baseline
//
typography()
//
// Headings
//
h1, h2, h3, h4, h5, h6
margin: 1em 0 .5em 0
small,
.small
bold()
color: $storm-dust
font-size: .6em
//
// Emphasis
//
small,
.small
small()
//
// Lists
//
.list-unstyled
reset-list()
.list-inline
inline-list()
| //
// Typography baseline
//
base()
typography()
body
-line-height()
//
// Headings
//
h1, h2, h3, h4, h5, h6
margin: 1em 0 .5em 0
small,
.small
bold()
color: $storm-dust
font-size: .6em
//
// Emphasis
//
small,
.small
small()
//
// Lists
//
.list-unstyled
reset-list()
.list-inline
inline-list()
| Set base line-height to body element | Set base line-height to body element
| Stylus | mit | alejandroiglesias/praxis |
6b058237e6054a6a422050bc1d226383ff8bf644 | app/styles/dragon-meiosis-view.styl | app/styles/dragon-meiosis-view.styl |
.meiosis, .meiosis-parent
position: relative
border: 1px solid lightgrey
width: 300px
height: 300px
.cell
width: 300px
height: 304px
.controls
margin-top: 10px
.buttons
display: inline-block
button
width: 38px
height: 38px
padding: 5px
&:hover
// This is dumb, but it prevents the buttons from sticking in an active color on IE
width: 38px
.scrub
width: 125px
display: inline-block
margin-left: 15px
position: relative
top: -4px
.ui-slider-handle
width: 6px
margin-left: -3px
|
.meiosis, .meiosis-parent
position: relative
border: 1px solid lightgrey
width: 300px
height: 300px
.cell
width: 300px
height: 304px
overflow: hidden
.controls
margin-top: 10px
.buttons
display: inline-block
button
width: 38px
height: 38px
padding: 5px
&:hover
// This is dumb, but it prevents the buttons from sticking in an active color on IE
width: 38px
.scrub
width: 125px
display: inline-block
margin-left: 15px
position: relative
top: -4px
.ui-slider-handle
width: 6px
margin-left: -3px
| Hide meiosis animation elements outside of the box | Hide meiosis animation elements outside of the box
[#87261960]
| Stylus | mit | concord-consortium/biologica-ui,concord-consortium/biologica-ui |
24c65487f4fe573bd0f675bd902f0432945d2f3e | lib/kouto-swiss/utilities/modular-scale.styl | lib/kouto-swiss/utilities/modular-scale.styl | modular-scale( base, step, ratio )
base * ( ratio ** step )
| ks-golden = 1.618
ks-minor-second = 1.067
ks-major-second = 1.125
ks-minor-third = 1.2
ks-major-third = 1.25
ks-perfect-fourth = 1.333
ks-augmented-fourth = 1.414
ks-perfect-fifth = 1.5
ks-minor-sixth = 1.6
ks-major-sixth = 1.667
ks-minor-seventh = 1.778
ks-major-seventh = 1.875
ks-octave = 2
ks-major-tenth = 2.5
ks-major-eleventh = 2.667
ks-major-twelfth = 3
ks-double-octave = 4
modular-scale( base, step, ratio = ks-perfect-fifth )
base * ( ratio ** step )
| Add global ratio variables for modular scale | Add global ratio variables for modular scale
| Stylus | mit | leny/kouto-swiss,krkn/kouto-swiss,leny/kouto-swiss,girassolbit/kouto-swiss,greyhwndz/kouto-swiss,greyhwndz/kouto-swiss,girassolbit/kouto-swiss,krkn/kouto-swiss |
475edc770acbce4c9b8de7dca3b763cfdac4c5ed | src/global.styl | src/global.styl | accentColor = deeppink
font-styling()
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Droid Sans", "Helvetica Neue", Arial, sans-serif
-webkit-font-smoothing: antialiased
font-weight: 400
font-size: 18px
line-height: 100%
color: white
| accentColor = white
font-styling()
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Droid Sans", "Helvetica Neue", Arial, sans-serif
-webkit-font-smoothing: antialiased
font-weight: 400
font-size: 18px
line-height: 100%
color: white
| Change loading spinner color to white | Change loading spinner color to white
| Stylus | mit | Foo-Bear/beartime-web,Foo-Bear/beartime-web |
2ed1a44a843a6826fd0bf920ef2e19b6ab068926 | source/css/_common/components/header/menu.styl | source/css/_common/components/header/menu.styl | // Menu
// --------------------------------------------------
.menu {
+mobile() {
padding-left: 10px;
}
margin-top: 20px;
padding-left: 0;
text-align: center;
}
.menu .menu-item {
display: inline-block;
margin: 0 10px;
@media screen and (max-width: 767px) {
margin-top: 10px;
}
a {
display: block;
font-size: 13px;
text-transform: capitalize;
line-height: 1.5;
border-bottom: 1px solid $menu-link-border;
transition-property: border-color;
the-transition();
&:hover { border-bottom-color: $menu-link-hover-border; }
}
}
.use-motion .menu-item { opacity: 0; }
| // Menu
// --------------------------------------------------
.menu {
margin-top: 20px;
padding-left: 0;
text-align: center;
}
.menu .menu-item {
display: inline-block;
margin: 0 10px;
@media screen and (max-width: 767px) {
margin-top: 10px;
}
a {
display: block;
font-size: 13px;
text-transform: capitalize;
line-height: 1.5;
border-bottom: 1px solid $menu-link-border;
transition-property: border-color;
the-transition();
&:hover { border-bottom-color: $menu-link-hover-border; }
}
}
.use-motion .menu-item { opacity: 0; }
| Fix nav link center on mobile | Fix nav link center on mobile | Stylus | mit | ganyuanda/hexo-theme-next,chaoskyme/hexo-theme-next,geekrainy/hexo-theme-next,Austaras/hexo-theme-next,chaoskyme/hexo-theme-next,FluencyLiu/hexo-theme-next,zhipengyan/hexo,mchsinx/hexo-theme-next,cragod/hexo-theme-next,zhipengyan/hexo,flashlab/hexo-theme-next,iissnan/hexo-theme-next |
3cb1c5a8780fc482556690df6e6788739d9d81a9 | src/styles/pages/ErrorPage.styl | src/styles/pages/ErrorPage.styl | .error-page-container
&.hidden
display: none
| .error-page-container
display: none
.error-page
color: #7b5101
.icon
&:after
font-family: FontAwesome, sans-serif
content: "\f071"
font-size: 1.1rem
.error-message
padding-left: 10px
&.show
display: block
| Add style to error icon and message | Add style to error icon and message
| Stylus | mit | IvaPetkova/My-HTML-Projects |
fdc98b71b93b8164e23842c9b98e86208fdbb5e3 | src/css/fonts.styl | src/css/fonts.styl | @font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato Regular'), local('Lato-Regular'),
url('../fonts/lato-latin-regular.woff2') format('woff2'),
url('../fonts/lato-latin-regular.woff') format('woff');
}
| @font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: local('Lato'),
local('Lato Regular'),
local('Lato-Regular'),
url('../fonts/lato-latin-regular.woff2') format('woff2'),
url('../fonts/lato-latin-regular.woff') format('woff');
}
| Load local Lato font on Windows | Load local Lato font on Windows
Windows Lato font is identified by Lato rather than Lato Regular or
Lato-Regular, so make sure our custom font uses that.
| Stylus | mit | kentor/notejs-react,kentor/notejs-react,kentor/notejs-react |
f77653230e2c1e35025f2ab9122ede5d194bd46f | app/assets/stylesheets/modules/_vega.styl | app/assets/stylesheets/modules/_vega.styl | .vega-bind
padding-bottom 5px
.vega-bind-name
width 200px
| .vega-bind
padding-bottom 5px
.vega-bind-name
width 200px
display inline-block
| Make the controls align nicely | Make the controls align nicely
| Stylus | mit | sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard |
f0146dd1ef855ff2b229903fa77f330780b6fdf5 | assets/styl/_modules/_socialbar.styl | assets/styl/_modules/_socialbar.styl | /* social bar */
.socialbar
@extends .list-type-none, .clearfix
li
float left
width 27px
padding-bottom 18px /* allows <span> positionning at bottom -18px */
text-align center
&:not(:first-child)
margin-left 1.8rem
a
position relative
&:not([data-icon='comments'])
@extends .btn-icon
/* counters */
span
@extends .font-secondary
absolute bottom -18px left 0
display inline-block
width 100%
margin-top 3px
border-radius 2px
background-color alpha(black, 10%)
color $color-base
line-height 1.3
| /* social bar */
.socialbar
@extends .list-type-none, .clearfix
li
float left
width 27px
text-align center
&:not(:first-child)
margin-left 1.8rem
a
position relative
&:not([data-icon='comments'])
@extends .btn-icon
/* counters */
span
@extends .font-secondary
absolute bottom -18px left 0
display inline-block
width 100%
margin-top 3px
border-radius 2px
background-color alpha(black, 10%)
color $color-base
line-height 1.3
| Remove padding-bottom for socialbar li | Remove padding-bottom for socialbar li | Stylus | mit | 20minutes/colette |
1030ca942e82be7fe7d8980d2e425632f14d9526 | src/index.styl | src/index.styl | @import 'nib'
.infinite-tree {
}
.infinite-tree-scroll {
overflow: auto;
max-height: 400px; /* Change the height to suit your needs. */
}
.infinite-tree-table {
width: 100%;
}
.infinite-tree-content {
// Outline removes default browser's borders for focused element.
outline: 0;
.infinite-tree-selected.infinite-tree-item,
.infinite-tree-selected.infinite-tree-item:hover {
background: #deecfd;
border: 1px solid #0066cc;
}
.infinite-tree-item {
border: 1px solid transparent;
cursor: default;
}
.infinite-tree-item:hover {
background: #f2fdff;
}
.infinite-tree-node {
position: relative;
}
.infinite-tree-toggler {
color: #666;
user-select: none;
}
.infinite-tree-toggler:hover {
color: #333;
text-decoration: none;
}
.infinite-tree-title {
cursor: pointer;
user-select: none;
}
}
// centering message that appears when no data provided
.infinite-tree-no-data {
text-align: center;
}
| @import 'nib'
.infinite-tree {
}
.infinite-tree-scroll {
overflow: auto;
max-height: 400px; /* Change the height to suit your needs. */
}
.infinite-tree-table {
width: 100%;
}
.infinite-tree-content {
// Outline removes default browser's borders for focused element.
outline: 0;
position: relative;
.infinite-tree-selected.infinite-tree-item,
.infinite-tree-selected.infinite-tree-item:hover {
background: #deecfd;
border: 1px solid #0066cc;
}
.infinite-tree-item {
border: 1px solid transparent;
cursor: default;
}
.infinite-tree-item:hover {
background: #f2fdff;
}
.infinite-tree-node {
position: relative;
}
.infinite-tree-toggler {
color: #666;
user-select: none;
}
.infinite-tree-toggler:hover {
color: #333;
text-decoration: none;
}
.infinite-tree-title {
cursor: pointer;
user-select: none;
}
}
// centering message that appears when no data provided
.infinite-tree-no-data {
text-align: center;
}
| Add `position: relative` to .infinte-tree-content | Add `position: relative` to .infinte-tree-content
| Stylus | mit | cheton/infinite-tree |
7e10e87c15b3631e91cccd6c16a8c80ce4031355 | web_client/stylesheets/imageViewerSelectWidget.styl | web_client/stylesheets/imageViewerSelectWidget.styl | .g-item-image-viewer-select
select
display inline
width auto
margin-left 25px
.image-viewer
border 1px solid #f0f0f0
width 100%
height 600px
.g-li-full-screen
width 100%
height 100%
position abolute
top 0
left 0
| .g-item-image-viewer-select
select
display inline
width auto
margin-left 25px
.image-viewer
border 1px solid #f0f0f0
width 100%
height 600px
.g-li-full-screen
width 100%
height 100%
position absolute
top 0
left 0
| Fix spelling error in css | Fix spelling error in css
| Stylus | apache-2.0 | girder/large_image,DigitalSlideArchive/large_image,girder/large_image,DigitalSlideArchive/large_image,DigitalSlideArchive/large_image,girder/large_image |
0a5ed154243f2e57de7b20bbb9d26fa73917ec12 | src/styles/theme/fonts.styl | src/styles/theme/fonts.styl | @font-face
font-family 'Lato'
font-style normal
font-weight 400
src local('Lato Normal'),
local('Lato-Normal'),
url(https://themes.googleusercontent.com/static/fonts/lato/v6/9k-RPmcnxYEPm8CNFsH2gg.woff)
format('woff')
| @font-face
font-family 'Lato'
font-style normal
font-weight 400
src local('Lato Normal'),
local('Lato-Normal'),
url('https://themes.googleusercontent.com/static/fonts/lato/v6/9k-RPmcnxYEPm8CNFsH2gg.woff')
format('woff')
| Fix url string on font-face | Fix url string on font-face
| Stylus | mit | carlosazaustre/universal-js-boilerplate |
b6b6b2e4dc44a2750b563384704d428b3f1b064a | app/react/styles/modules/site.styl | app/react/styles/modules/site.styl | body
background-color $gallery
.site__navigation
background white
position relative
z-index 100
box-shadow 0px 2px 4px 0px rgba(0,0,0,0.15)
padding .5rem
+above(lg)
padding 1rem 0
img
display inline-block
vertical-align middle
.btn-primary
border-radius 0
+above(md)
border-radius 3px
.site__content
padding 0
.site__mobile-navigation
max-height 0px
overflow hidden
transition all 300ms linear
padding 0 2rem
&.open
max-height 9999px | body
background-color $gallery
.site__navigation
background white
position relative
z-index 100
box-shadow 0px 2px 4px 0px rgba(0,0,0,0.15)
padding .5rem
+above(lg)
padding 1rem 0
img
display inline-block
vertical-align middle
border none
.btn-primary
border-radius 0
+above(md)
border-radius 3px
.site__content
padding 0
.site__mobile-navigation
max-height 0px
overflow hidden
transition all 300ms linear
padding 0 2rem
&.open
max-height 9999px
| Remove border from nav svg on IE10 | Remove border from nav svg on IE10
| Stylus | mit | WikiEducationFoundation/Wiki-Playlist,WikiEducationFoundation/Wiki-Playlist,WikiEducationFoundation/Wiki-Playlist |
b3530b268f16d81da2dc6e9d88622f905bc2f54e | src/styl/offline-game.styl | src/styl/offline-game.styl | .playersTable.offline
margin-top 0
.antagonistInfos
width 100%
.select_input
background #353535
color textLightGray
margin-top 0
select
padding-left 110px
+ .select_input
margin-top 15px
.engineSpinner
color darken(textDarkBg, 5%)
margin-left 10px
.offline_actions
.claimDraw
button.draw-yes:before
display inline-block
transform rotate(-90deg)
.opponentSelector
.select_input
margin-top 0
.new_offline_game
.popupActionWrapper
margin 10px 0
.from_position_wrapper
margin-top 10px
p
font-size 0.9em
> .from_position
margin-top 5px
display flex
justify-content center
.OtbImportGamePopup
.popup_content
padding 10px
form
margin 1em 0
display flex
flex-flow column nowrap
position relative
> .importMeta
margin-bottom 10px
width 90%
&:last-child
margin-bottom 0
> .exchange
position absolute
right 0
height 100%
width 10%
display flex
align-items center
justify-content center
> .fa
margin 0
.offlineClock
font-size 1.2em
text-align center
max-width 70px
.clockMoves
font-size 0.9em
| .playersTable.offline
margin-top 0
.antagonistInfos
width 100%
.select_input
background #353535
color textLightGray
margin-top 0
select
padding-left 110px
+ .select_input
margin-top 15px
.engineSpinner
color darken(textDarkBg, 5%)
margin-left 10px
.offline_actions
.claimDraw
button.draw-yes:before
display inline-block
transform rotate(-90deg)
.opponentSelector
.select_input
margin-top 0
.new_offline_game
.popupActionWrapper
margin 10px 0
.from_position_wrapper
margin-top 10px
p
font-size 0.9em
> .from_position
margin-top 5px
display flex
justify-content center
.OtbImportGamePopup
.popup_content
padding 10px
form
margin 1em 0
display flex
flex-flow column nowrap
position relative
> .importMeta
margin-bottom 10px
width 90%
&:last-child
margin-bottom 0
> .exchange
position absolute
right 0
height 100%
width 10%
display flex
align-items center
justify-content center
> .fa
margin 0
.offlineClock
font-size 1.2em
text-align center
max-width 70px
.offlineClock.outoftime
background-color #a00000
.clockMoves
font-size 0.9em
| Make clock red when palyer flags | Make clock red when palyer flags
| Stylus | mit | btrent/lichobile,btrent/lichobile,btrent/lichobile,btrent/lichobile |
3431b18683d07cb6e8e0d3f50d36eb9704cf33c5 | apps/home/stylesheets/responsive.styl | apps/home/stylesheets/responsive.styl | +mobile()
.HomeHero
min-height 100vh !important
justify-content center
&__focus
padding 0
width 100%
&__demo-block
width 100%
> .Block
width 100%
max-width 100%
margin 0
.Block
&__inner
border none
height 100vw
&__caption
display none
&__connect
margin-top 0
> .HomeSection
&__content
justify-content center
&__footer
display none
.HomeSection
min-height auto
&__content
padding 0
justify-content flex-start
&__cta
> .Button
flex-basis 50%
&:first-child
margin-right 0.5em
&:last-child
margin-left 0.5em
&__footer
margin-top 4em
> a
padding 0.5em
.HomeSplit
display block
collapsed-margins(4em)
&__pane
display block
width 100%
collapsed-margins(2em)
padding 0 1em
&__description
max-width 100%
.HomeExample
width 100%
.HomeNext
display none
| @media (max-height: 45em)
.HomeHero
&__focus
padding 0
.HomeSection
&__cta
> .Button
font-size font-size-base
+mobile()
.HomeHero
min-height 100vh !important
justify-content center
&__focus
padding 0
width 100%
&__demo-block
width 100%
> .Block
width 100%
max-width 100%
margin 0
.Block
&__inner
border none
height 100vw
&__caption
display none
&__connect
margin-top 0
> .HomeSection
&__content
justify-content center
&__footer
display none
.HomeSection
min-height auto
&__content
padding 0
justify-content flex-start
&__cta
> .Button
flex-basis 50%
&:first-child
margin-right 0.5em
&:last-child
margin-left 0.5em
&__footer
margin-top 4em
> a
padding 0.5em
.HomeSplit
display block
collapsed-margins(4em)
&__pane
display block
width 100%
collapsed-margins(2em)
padding 0 1em
&__description
max-width 100%
.HomeExample
width 100%
.HomeNext
display none
| Deal with small (MBA) screens | Deal with small (MBA) screens
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
3e1edde058629543670ebb6b4f7ce941d85dd91b | src/style/ie.styl | src/style/ie.styl | @require "./_vars.styl"
span.flatpickr-weekday
display: inline-block;
width: 14.2857143%
span.flatpickr-current-month
top: 0px !important
span.flatpickr-day
width: 14.2857143%;
margin: 0 (($daysWidth - $daySize*7)/14)
| @require "./_vars.styl"
span.flatpickr-weekday
display: inline-block;
width: 14.2857143%
span.flatpickr-day
width: 14.2857143%;
margin: 0 (($daysWidth - $daySize*7)/14)
@media screen and (min-width:unquote("0\0"))
span.flatpickr-current-month
padding-top: 0px !important
| Fix month name in IE | Fix month name in IE
| Stylus | mit | chmln/flatpickr,chmln/flatpickr |
6c66a2d82843db00c1c2692469b37812ad120a7e | src/app/components/shell/top-nav/top-nav.styl | src/app/components/shell/top-nav/top-nav.styl | @require '~styles/variables'
@require '~styles-lib/mixins'
#shell-top-nav
position: fixed
top: 0
left: 0
// If we used `right: 0` instead, the top nav would flex off the screen if
// a horizontal scrollbar became visible. Doing it this way ensures it's
// always the correct width.
width: 100vw
z-index: $zindex-shell-top-nav
#shell.has-banner &
top: $shell-top-nav-height
.disconnected-icon
theme-prop('color', 'notice')
&, .jolticon
cursor: help
| @require '~styles/variables'
@require '~styles-lib/mixins'
#shell-top-nav
position: fixed
top: 0
left: 0
// If we used `right: 0` instead, the top nav would flex off the screen if
// a horizontal scrollbar became visible. Doing it this way ensures it's
// always the correct width.
width: 100vw
max-width: 100%
z-index: $zindex-shell-top-nav
#shell.has-banner &
top: $shell-top-nav-height
.disconnected-icon
theme-prop('color', 'notice')
&, .jolticon
cursor: help
| Fix width for top nav | Fix width for top nav
| Stylus | mit | gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt |
0e0dc7bfab0fcbe892a3aff741cd5281fe9aea14 | web_client/stylesheets/thumbnail.styl | web_client/stylesheets/thumbnail.styl | @import '../../../../clients/web/src/stylesheets/body/itemPage.styl'
.g-item-thumbnail-header
@extend .g-item-metadata-header
margin-top 18px
| @import '../../../../clients/web/src/stylesheets/widgets/metadataWidget.styl'
.g-item-thumbnail-header
@extend .g-widget-metadata-header
margin-top 18px
| Fix an issue with upgrading to Girder 1.0 | Fix an issue with upgrading to Girder 1.0
| Stylus | apache-2.0 | ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive |
f1f150bb56aa9297ac7b21867432f5aaedb98821 | css/notification-section.styl | css/notification-section.styl | .notification-section
@extends .content-container
background-color: #EDEDED
border-radius: 4px
margin: 1.5em 10%
overflow: hidden
padding: 1em 5%
&__container
align-items: center
display: flex
justify-content: center
&__item
width: 33%
&__error
background: rgba(red, 0.3)
font-size: 0.8em
font-weight: bold
padding: 0.5em 2em
text-align: center
&__title
color: #646464
text-align: center
text-decoration: none
text-transform: capitalize
&__img
border-radius: 50%
max-width: 40px
max-height: 40px
&__item-count
display: inline-block
font-size: 0.8em
padding: 0em 2em
&__expand
float: right
button
background: none !important
border: none !important
outline: none
position: absolute
&:hover
color: inherit !important
.fa-star
color: #F0B200
float: right
.notifications-title
margin: 0 10%
padding: 1em 0 0.75em 0
text-align: center
&__project
background: #f7f7f7
border: 2px solid #f2f1f1
border-radius: 4px
margin: 0 10%
padding: 5px
| .notification-section
@extends .content-container
background-color: #EDEDED
border-radius: 4px
margin: 1.5em 10%
overflow: hidden
padding: 1em 5%
&__container
align-items: center
display: flex
justify-content: center
&__item
width: 33%
&__error
background: rgba(red, 0.3)
font-size: 0.8em
font-weight: bold
padding: 0.5em 2em
text-align: center
&__title
color: #646464
text-align: center
text-decoration: none
text-transform: capitalize
&__img
border-radius: 50%
max-width: 40px
max-height: 40px
&__item-count
display: inline-block
font-size: 0.8em
padding: 0em 2em
&__expand
float: right
button
background: none !important
border: none !important
outline: none
position: absolute
&:hover
color: inherit !important
.fa-star
color: #F0B200
float: right
.notifications-title
margin: 0 10% 1em 10%
padding: 1em 0 0.75em 0
text-align: center
&__project
background: #f7f7f7
border: 2px solid #f2f1f1
border-radius: 4px
margin: 0 10%
padding: 5px
| Add Margin to Separate Announcement | Add Margin to Separate Announcement
| Stylus | apache-2.0 | amyrebecca/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,zooniverse/Panoptes-Front-End |
9407fc9543b1d13a640cc21435ccdaaf7418a750 | src/app/components/shell/top-nav/top-nav.styl | src/app/components/shell/top-nav/top-nav.styl | @require '~styles/variables'
@require '~styles-lib/mixins'
#shell-top-nav
position: fixed
top: 0
left: 0
right: 0
z-index: $zindex-shell-top-nav
#shell.has-banner &
top: $shell-top-nav-height
.disconnected-icon
theme-prop('color', 'notice')
&, .jolticon
cursor: help
| @require '~styles/variables'
@require '~styles-lib/mixins'
#shell-top-nav
position: fixed
top: 0
left: 0
// If we used `right: 0` instead, the top nav would flex off the screen if
// a horizontal scrollbar became visible. Doing it this way ensures it's
// always the correct width.
width: 100vw
z-index: $zindex-shell-top-nav
#shell.has-banner &
top: $shell-top-nav-height
.disconnected-icon
theme-prop('color', 'notice')
&, .jolticon
cursor: help
| Fix top nav to not stretch the full body, but only stretch the viewport width. | Fix top nav to not stretch the full body, but only stretch the viewport width.
This fixes popovers stretching the window out and ruining top nav.
| Stylus | mit | gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt |
f98b8993b487b4cce369644c8e632f15184fd798 | src/app/resources/Grid.styl | src/app/resources/Grid.styl | @require 'vars.styl'
.grid
button.btn-link
padding: 10px 15px
.nav-tabs
margin-bottom: 5px
padding-left: 5px
padding-top: 5px
.dgrid
.dgrid-header-row
background-color: $background-grey
.dgrid-row-odd
background-color: #f5f5f5
.dgrid-cell.field-Id
width: 0
.dgrid-cell
text-overflow: ellipsis
white-space: nowrap
[data-dojo-attach-point='clearSelectionBtnContainer'] button
margin-right: 7px
margin-top: 3px
| @require 'vars.styl'
.grid
height 100%
[role='tabpanel']
height 100%
.tab-content
top 47px
bottom 0
left 0
right 0
position absolute
.tab-pane, .dgrid
height 100%
width 100%
button.btn-link
padding: 10px 15px
.nav-tabs
margin-bottom: 5px
padding-left: 5px
padding-top: 5px
.dgrid
.dgrid-header-row
background-color: $background-grey
.dgrid-row-odd
background-color: #f5f5f5
.dgrid-cell.field-Id
width: 0
.dgrid-cell
text-overflow: ellipsis
white-space: nowrap
[data-dojo-attach-point='clearSelectionBtnContainer'] button
margin-right: 7px
margin-top: 3px
| Fix sizing of dgrid to not overflow off the bottom of the page | Fix sizing of dgrid to not overflow off the bottom of the page
Fixes #55
| Stylus | mit | agrc/ugs-chemistry,agrc/ugs-chemistry,agrc/ugs-chemistry |
499c921167180a52e2b5410f3f5ce947c9a940f4 | lib/util/float.styl | lib/util/float.styl | // placeholders
$clearfix
clearfix();
// blocks
u-pl-block := {
float : left
}
u-pr-block := {
float : right !important
}
// rules
.u-cf
@extend $clearfix;
.u-pl
{u-pl-block}
.u-pr
{u-pr-block}
| // placeholders
$clearfix
clearfix();
// blocks
u-pl-block := {
float : left
}
u-pr-block := {
float : right !important
}
// rules
.u-cf
@extend $clearfix;
&:before
&:after
display: none;
.u-pl
{u-pl-block}
.u-pr
{u-pr-block}
| Fix clearfix :before and :after visibility bug. | Fix clearfix :before and :after visibility bug.
Possibly due to an updated browser version or dependency but the
clearfix pseudo elements had become visible.
| Stylus | mit | socialally/aqua,socialally/aqua |
47ad058cc992219c00110d46d99142ffd1919be4 | src/stylus/workers.styl | src/stylus/workers.styl | .worker-list
list-style-type none
li
width 80%
padding 1em
margin 0.5em auto
display inline-block
border link-color 1px solid
h3
margin 0
.versions
margin 0
dt
font-weight 400
display inline-block
margin .4em
&:first-child
margin-left 0
dd
display inline-block
margin 0
margin-right .8em
@media screen and (min-width 900px)
.worker-list
li
max-width 46%
&:nth-child(2n)
float right
margin-right 0
&:nth-child(n)
margin-left 0
| .worker-list
list-style-type none
margin 0
li
width 80%
padding 1em
margin 0.5em auto
display inline-block
border link-color 1px solid
h3
margin 0
.versions
margin 0
dt
font-weight 400
display inline-block
margin .4em
&:first-child
margin-left 0
dd
display inline-block
margin 0
margin-right .8em
@media screen and (min-width 900px)
.worker-list
li
max-width 46%
&:nth-child(2n)
float right
margin-right 0
&:nth-child(n)
margin-left 0
| Fix margin on worker list | Fix margin on worker list
| Stylus | mit | frigg/frigg-hq-frontend,frigg/frigg-hq-frontend |
c17ae2801cb3884884dfa642e2e5aedb91110455 | src/style/flatpickr.styl | src/style/flatpickr.styl | $calendar_background = #ffffff
$calendar_border_color = #e6e6e6
$months_color = alpha(black, 0.9)
$months_background = transparent
$weekdays_background = transparent
$day_text_color = #393939
$day_hover_background_color = #e6e6e6
$today_color = #f99595
$selected_day_background = #446CB3
@import "flatpickr_base"
| $calendar_background = #ffffff
$calendar_border_color = #e6e6e6
$months_color = alpha(black, 0.9)
$months_background = transparent
$weekdays_background = transparent
$day_text_color = #393939
$day_hover_background_color = #e6e6e6
$today_color = #f99595
$selected_day_background = #3da3f3
@import "flatpickr_base"
| Update default selected day color to a nicer blue | Update default selected day color to a nicer blue
| Stylus | mit | chmln/flatpickr,chmln/flatpickr,sylvaingi/flatpickr |
d18a090b3b832eb40a8dece178e9dad4b3519c0c | components/invest_cta/index.styl | components/invest_cta/index.styl | .InvestCTA
position fixed
bottom 0
left 0
right 0
width 100%
padding 1em
display flex
flex-direction row
justify-content center
align-items center
text-align center
z-index header_z
background-color colors-state-invest
color white
font-size font-size-base
line-height line-height-base
transform translateZ(0)
&__close
position absolute
top 0
right 0
padding 0.5em 0.75em
line-height 1
color white
font-size font-size-lg
text-align center
.Type
color white
> span
> .Button
margin 0 0.5em
> .Button
color white
border-color darken(colors-state-invest, 30)
+mobile()
.InvestCTA
flex-direction column
| .InvestCTA
position fixed
bottom 0
left 0
right 0
width 100%
padding 1.25em
display flex
flex-direction row
justify-content center
align-items center
text-align center
z-index header_z + 10
background-color colors-state-invest
color white
font-size font-size-base
line-height line-height-base
transform translateZ(1)
&__close
position absolute
top 0
right 0
padding 0.5em 0.75em
line-height 1
color white
font-size font-size-lg
text-align center
.Type
color white
> span
> .Button
margin 0 0.5em
> .Button
color white
border-color darken(colors-state-invest, 30)
+mobile()
.InvestCTA
flex-direction column
| Make invest CTA show up above invite message | Make invest CTA show up above invite message
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
eedd866d6615ae570e3f92f985872a7d8d6b4480 | client/common/blocks/navbar_auth/navbar_auth.styl | client/common/blocks/navbar_auth/navbar_auth.styl | @import "nodeca.core/client/common/_variables"
// Hide default caret from .dropdown-toggle
.navbar-auth__dropdown-toggle
padding-top 0 !important
padding-bottom 0 !important
&:after
display none
.navbar-auth__avatar
height 2.375rem
border-radius 3px
border 1px solid ($brand-primary + 20%)
| @import "nodeca.core/client/common/_variables"
// Hide default caret from .dropdown-toggle
.navbar-auth__dropdown-toggle:after
display none
.navbar-auth__avatar
height 2.375rem
border-radius 3px
border 1px solid ($brand-primary + 20%)
//
// Tweak top/bottom padding for mobile and desktop toolbars
//
.navbar-auth__dropdown-toggle
padding-bottom 0 !important
@media (min-width: $grid-breakpoints.sm)
.navbar-auth__dropdown-toggle
padding-top 0 !important
| Tweak toolbar user icon padding on mobiles | Tweak toolbar user icon padding on mobiles
| Stylus | mit | nodeca/nodeca.users |
c81bc7f896003fa01982f9a227e52745626005a8 | www/stylus/checkins.styl | www/stylus/checkins.styl | #full-modal
// Maps
#map
background #f2f0e9
height 125px
margin 0
position relative
width 100%
z-index 12000
transition height linear 100ms
&.hide-on-mobile
@media screen and (max-height: 480px)
height 0
#loading-text
margin 20px 0 0
text-align center
.checkin
background #efefef
border-bottom 1px solid #cdcdcd
clear both
margin 0 auto
max-width 90%
padding 5px
position relative
&:nth-child(2)
background #fefefe
.arrow
background #efefef
&:after
clear both
content ""
display block
.profile-photo
height 50px
margin 0 5px 0 0
width 50px
.user
font-size .9em
.venue
margin .25em 30px .25em 0
overflow hidden
text-overflow ellipsis
white-space nowrap
h4
font-size .8em
.arrow
background #efefef
position absolute
right 10px
top: 50%
transform translate(0%, -50%)
-moz-transform translate(0%, -50%)
-webkit-transform translate(0%, -50%)
#confirm-checkin
#checkin-comment
display block
margin 0 auto 1em
min-height 60px
width 90%
| #full-modal
// Maps
#map
background #f2f0e9
height 125px
margin 0
position relative
width 100%
z-index 12000
transition height linear 100ms
&.hide-on-mobile
@media screen and (max-height: 480px)
height 0
#loading-text
margin 20px 0 0
text-align center
.checkin
background #efefef
border-bottom 1px solid #cdcdcd
clear both
margin 0 auto
max-width 90%
padding 5px
position relative
&:nth-child(2n)
background #fefefe
.arrow
background #efefef
&:after
clear both
content ""
display block
.profile-photo
height 50px
margin 0 5px 0 0
width 50px
.user
font-size .9em
.venue
margin .25em 30px .25em 0
overflow hidden
text-overflow ellipsis
white-space nowrap
h4
font-size .8em
.arrow
background #efefef
position absolute
right 10px
top: 50%
transform translate(0%, -50%)
-moz-transform translate(0%, -50%)
-webkit-transform translate(0%, -50%)
#confirm-checkin
#checkin-comment
display block
margin 0 auto 1em
min-height 60px
width 90%
| Use 2n instead of just 2 | Use 2n instead of just 2
| Stylus | apache-2.0 | mozilla/around,mozilla/around,mozilla/around |
7b5d4a53c718cb72dbc9a89988889409d333a6a5 | clients/web/src/stylesheets/body/collectionList.styl | clients/web/src/stylesheets/body/collectionList.styl | .g-collection-list-entry
.g-collection-title
font-size 17px
.g-collection-description
color #666
font-size 14px
font-weight bold
.g-collection-right-column
border-left 1px solid #ddd
padding-left 8px
display inline
width 290px
font-size 14px
float right
color #909090
.g-collection-description
background-color white
padding 8px 12px
border-radius 3px
border 1px solid #dedede
.g-collection-list-header
padding-bottom 10px
.g-collection-pagination
display inline-block
>ul
margin 0 15px 0 0
.pagination>li>a
float none
line-height 1.5
padding 7px 12px
.g-collection-search-form
display inline
margin-right 15px
.form-group
display inline-block
| .g-collection-list-entry
.g-collection-title
font-size 17px
.g-collection-right-column
border-left 1px solid #ddd
padding-left 8px
display inline
width 290px
font-size 14px
float right
color #909090
.g-collection-description
background-color white
padding 8px 12px
border-radius 3px
border 1px solid #dedede
.g-collection-list-header
padding-bottom 10px
.g-collection-pagination
display inline-block
>ul
margin 0 15px 0 0
.pagination>li>a
float none
line-height 1.5
padding 7px 12px
.g-collection-search-form
display inline
margin-right 15px
.form-group
display inline-block
| Remove outdated style rules for collection description | Remove outdated style rules for collection description
| Stylus | apache-2.0 | kotfic/girder,Kitware/girder,RafaelPalomar/girder,sutartmelson/girder,adsorensen/girder,jbeezley/girder,Kitware/girder,manthey/girder,RafaelPalomar/girder,Xarthisius/girder,RafaelPalomar/girder,Xarthisius/girder,girder/girder,kotfic/girder,RafaelPalomar/girder,jbeezley/girder,adsorensen/girder,data-exp-lab/girder,girder/girder,kotfic/girder,data-exp-lab/girder,girder/girder,sutartmelson/girder,Kitware/girder,sutartmelson/girder,Xarthisius/girder,kotfic/girder,sutartmelson/girder,jbeezley/girder,Xarthisius/girder,manthey/girder,manthey/girder,kotfic/girder,data-exp-lab/girder,data-exp-lab/girder,jbeezley/girder,adsorensen/girder,adsorensen/girder,data-exp-lab/girder,girder/girder,Kitware/girder,RafaelPalomar/girder,Xarthisius/girder,sutartmelson/girder,manthey/girder,adsorensen/girder |
f9ed050118a50db1c3c4a5d49c654fe5b79ef058 | client-src/common/stylus/resource-list-item.styl | client-src/common/stylus/resource-list-item.styl | .resource-list-item
font-size 17px
padding 0
border-bottom 1px solid #eee
height 40px
transition height 0.25s
overflow hidden
display flex
align-items center
&.resource-list-item-enter,
&.resource-list-item-leave.resource-list-item-leave-active
height 0
&.resource-list-item-enter.resource-list-item-enter-active,
&.resource-list-item-leave
height 40px
&:first-child
border-top 1px solid #eee
.resource-list-item-delete
font-size 15px
color #b5b5b5
cursor pointer
margin 0 15px 0 auto
&:hover
color #888
&:active,
&:focus
outline none
color #555
+respond-above($md-screen)
margin-right 0
&[disabled]
color #dfdfdf
| .resource-list-item
font-size 17px
padding 0
border-bottom 1px solid #eee
height 40px
transition height 0.25s
overflow hidden
display flex
align-items center
&:hover
background #fbfbfb
&.resource-list-item-enter,
&.resource-list-item-leave.resource-list-item-leave-active
height 0
&.resource-list-item-enter.resource-list-item-enter-active,
&.resource-list-item-leave
height 40px
&:first-child
border-top 1px solid #eee
.resource-list-item-delete
font-size 15px
color #b5b5b5
cursor pointer
margin 0 15px 0 auto
&:hover
color #888
&:active,
&:focus
outline none
color #555
+respond-above($md-screen)
margin-right 0
&[disabled]
color #dfdfdf
| Add hover effect to list items | Add hover effect to list items
Resolves #266
| Stylus | mit | jmeas/finance-app,jmeas/finance-app,jmeas/moolah,jmeas/moolah |
c0995e6c7f39ed794054b119a8d1c221478c8125 | src/components/wowser/index.styl | src/components/wowser/index.styl | @import '~normalize.css'
@import './ui';
html, body
width: 100%
height: 100%
overflow: hidden
*
box-sizing: border-box
wowser
display: flex
align-items: center
justify-content: center
width: 100%
height: 100%
background: #222222
font-family: Galdeano
font-size: 13px
color: #FFFFFF
-webkit-font-smoothing: antialiased
&:active
cursor: none
.branding
position: absolute
top: 10px
right: 10px
z-index: 4
header
width: 204px
height: 47px
background: url('./images/logo.png') no-repeat
text-indent: -99999px
.divider
margin: 5px 0
.slogan
color: #FFCC00
letter-spacing: .075em
select.screen-selector
position: absolute
top: 100px
right: 10px
z-index: 4
| @import '~normalize.css'
@import './ui';
html, body
width: 100%
height: 100%
overflow: hidden
*
box-sizing: border-box
wowser
display: flex
align-items: center
justify-content: center
width: 100%
height: 100%
background: #222222
font-family: Galdeano
font-size: 13px
color: #FFFFFF
-webkit-font-smoothing: antialiased
&:active
cursor: none
.branding
position: absolute
top: 10px
right: 10px
z-index: 4
header
width: 204px
height: 47px
background: url('./images/logo.png') no-repeat
text-indent: -99999px
.divider
margin: 5px 0
.slogan
color: #FFCC00
letter-spacing: .075em
select.screen-selector
position: absolute
top: 100px
right: 10px
z-index: 4
color: #000000
| Fix text color of the screen selector <select> | Fix text color of the screen selector <select>
Force the color to be black instead of white (in a white background)
| Stylus | mit | wowserhq/wowser,timkurvers/wowser,timkurvers/wowser,wowserhq/wowser |
281c699dd12bf6d1f5dc95ed7c1facef52c1daac | source/styles/home.styl | source/styles/home.styl | .home-slogan
text-align center
.home-description
text-align center
margin-bottom 40px
.home-download
background #eee
display flex
justify-content space-between
align-items center
a
text-decoration none
.home-logo
padding 20px 40px 20px 20px
img
height 120px
.home-download-details
flex 1
p
margin 0
padding 0
.home-download-version
display block
font-size 1.4rem
font-weight 700
color black
border-radius 0 4px 0 0
margin-bottom 20px
.home-download-list
color rgba(0, 0, 0, 0.5)
font-size 0.9rem
padding-top 0
padding-bottom 0
height 28px
max-height 28px
a:after
content ', '
a:nth-last-child(2):after
content ' & '
color rgba(0, 0, 0, 0.5)
a:last-child:after
content ''
.home-secondary-links
margin-top 40px
p
text-align center
| .home-slogan
text-align center
.home-description
text-align center
margin-bottom 40px
.home-download
background #eee
display flex
justify-content space-between
align-items center
a
text-decoration none
.home-logo
padding 20px 40px 20px 20px
img
height 120px
.home-download-details
flex 1
p
margin 0
padding 0
.home-download-version
display block
font-size 1.4rem
font-weight 700
color black
border-radius 0 4px 0 0
margin-bottom 20px
.home-download-list
color rgba(0, 0, 0, 0.5)
font-size 0.9rem
padding-top 0
padding-bottom 0
margin-right 10px
a:after
content ', '
a:nth-last-child(2):after
content ' & '
color rgba(0, 0, 0, 0.5)
a:last-child:after
content ''
.home-secondary-links
margin-top 40px
p
text-align center
| Index page: fix for mobile phones (narrow screen) | Index page: fix for mobile phones (narrow screen)
| Stylus | mit | lucasconstantino/iojs.org,Fishrock123/iojs.org,LestaD/iojs.org-website,nodejs/iojs.org,Fishrock123/iojs.org,Wirachmat/iojs.org,lucasconstantino/iojs.org,nodejs/iojs.org,diagramatics/iojs.org,phillipj/iojs.org,mikeal/iojs.org,diagramatics/iojs.org,LestaD/iojs.org-website,phillipj/iojs.org,Wirachmat/iojs.org,iojs-es/website,mikeal/iojs.org,iojs-es/website |
3dc626cebb28334cc9cb54c648207b0d39cbf050 | imports/ui/components/header/header.styl | imports/ui/components/header/header.styl | header
position: sticky
top: 0
nav
ol, ul
background-color: #FFF
display: block
li
display: inline-block
padding: 0 1em
ol
padding-left: 0
position: absolute
.hide-children
ol
display: none
&:hover
ol
display: block
| header
position: sticky
top: 0
nav
a
color: #FFF
display: inline-block
padding: 1em
text-decoration: none
&.active
background-color: #EF3E45
&:active
&:hover
&:focus
background-color: #D4373E
ol
ul
background-color: #000
display: block
li
display: inline-block
ol
padding-left: 0
position: absolute
.hide-children
ol
display: none
&:hover ol
display: block
| Apply some styling to the navbar and their links. | Apply some styling to the navbar and their links.
| Stylus | mit | LuisLoureiro/placard-wrapper |
69b640c1e1ebd5abebe5d13342bed21ec5f12a8f | components/logged_out_nav/components/menu/index.styl | components/logged_out_nav/components/menu/index.styl | .LoggedOutMenu
position absolute
top 2em
left 3.25em
font-size font-size-base
line-height line-height-tall
user-select none
-webkit-touch-callout none
&__toggle
display none
position relative
cursor pointer
width 1.5em
height @width
// Patties
> span
width 1.5em
height 2px
top 50%
left 50%
transform translate(-50%, -50%)
&
&:before
&:after
display block
position absolute
background-color colors-gray-text
&:before
&:after
content ''
width 100%
height 100%
&:before
top 300%
&:after
bottom 300%
&__options
margin-top 1em
> a
display block
text-decoration none
&[data-state='active']
font-weight bold
color colors-gray-hover
&:first-child
display none
&--active
.LoggedOutMenu
&__options
display block
&__toggle
> span
&
&:before
&:after
background-color colors-gray-lighter
+below(logged-out-nav-breakpoint)
.LoggedOutMenu
position relative
top 0
left 0
background-color white
&__toggle
display block
&__options
display none
> a:first-child
display block
| .LoggedOutMenu
position absolute
top 2em
left 3.25em
font-size font-size-base
line-height line-height-tall
user-select none
-webkit-touch-callout none
display none
&__toggle
display none
position relative
cursor pointer
width 1.5em
height @width
// Patties
> span
width 1.5em
height 2px
top 50%
left 50%
transform translate(-50%, -50%)
&
&:before
&:after
display block
position absolute
background-color colors-gray-text
&:before
&:after
content ''
width 100%
height 100%
&:before
top 300%
&:after
bottom 300%
&__options
margin-top 1em
> a
display block
text-decoration none
&[data-state='active']
font-weight bold
color colors-gray-hover
&:first-child
display none
&--active
.LoggedOutMenu
&__options
display block
&__toggle
> span
&
&:before
&:after
background-color colors-gray-lighter
+below(logged-out-nav-breakpoint)
.LoggedOutMenu
position relative
top 0
left 0
background-color white
display block
&__toggle
display block
&__options
display none
> a:first-child
display block
| Hide menu on non-mobile sizes | Hide menu on non-mobile sizes
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
62c6c66ffe92185dd4994c348d19daff0df93633 | docs/.vuepress/styles/palette.styl | docs/.vuepress/styles/palette.styl | // colors
$accentColor = #4F99A8
$textColor = #47585C
$borderColor = tint($textColor, 70%);
$codeBgColor = #282c34
$arrowBgColor = #68C8DB
$badgeTipColor = #68C8DB
$badgeWarningColor = darken(#EDAC5F, 35%)
$badgeErrorColor = #D74C44
| // colors
$accentColor = #4F99A8
$textColor = #47585C
$borderColor = tint($textColor, 70%);
$codeBgColor = #282c34
$arrowBgColor = #68C8DB
$badgeTipColor = #68C8DB
$badgeWarningColor = darken(#EDAC5F, 35%)
$badgeErrorColor = #D74C44
.credential-editor {
aside {
display: none !important;
width: 0 !important;
}
.page {
padding-left: 0 !important;
}
} | Add class to hide side bar and remove padding on page | Add class to hide side bar and remove padding on page
| Stylus | apache-2.0 | cassproject/cass-editor,cassproject/cass-editor |
55674a504588876c643fcfb2d5857d403ba55b5f | app/assets/stylesheets/modules/_notifications.styl | app/assets/stylesheets/modules/_notifications.styl | .alert
padding 20px
text-align center
p
color warning
td
text-align left
.notification
background-color sprout
padding 10px
color #fff
text-align center
font-weight bold
> .container
display flex
align-items center
p
flex 1
margin-bottom 0
white-space pre-line
.button
margin-left 20px
a:not(.button)
color #fff
.notice
@extends .notification
position relative
z-index 9999
width 100%
text-align left
background-color warning
color #fff
> .container
svg
&:focus,
&:hover
cursor pointer
color smoke
outline none
| .alert
padding 20px
text-align center
p
color warning
td
text-align left
.notification
background-color sprout
padding 10px
color #fff
text-align center
font-weight bold
> .container
display flex
align-items center
p
flex 1
margin-bottom 0
white-space pre-line
overflow overlay
.button
margin-left 20px
a:not(.button)
color #fff
.notice
@extends .notification
position relative
z-index 9999
width 100%
text-align left
background-color warning
color #fff
> .container
svg
&:focus,
&:hover
cursor pointer
color smoke
outline none
| Fix bug where 'dismiss' icon isn't usable in error notification | Fix bug where 'dismiss' icon isn't usable in error notification
A user reported that, while using Article Finder, undismissable error notifications would gradually take over the screen. The errors were from ORES API request timeouts, but the URL that threw the error was so long that it pushed the 'dismiss' icon wasn't visible. Setting 'overflow: overlay' adds a horizontal scroll bar instead when there is a string that is too long but won't wrap within an error message, so the dismiss icon should remain usable.
| Stylus | mit | WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard |
e1f6ce189f95ffa22ab4ecd9615728361d8c8a4c | app/react/styles/modules/site.styl | app/react/styles/modules/site.styl | body
background-color $gallery
background-image url(/images/background-pattern.png)
background-size 300px auto
.site
height 100%
.logo__image
position relative
top -1px
margin-right .5rem
.logo__text
position relative
top 1px
height 15px
+above(md)
height 20px
.site__navigation
background white
position relative
z-index 100
box-shadow 0px 2px 4px 0px rgba(0,0,0,0.15)
padding .5rem
+above(lg)
padding 1rem 0
img
display inline-block
vertical-align middle
border none
.btn,
.btn.btn-primary
border-radius 0
font-size 12px
padding 9px
+above(md)
border-radius 3px
padding 9px 15px
font-size 14px
.site__content
padding 0
.site__mobile-navigation
max-height 0px
overflow hidden
transition all 300ms linear
padding 0 2rem
&.open
max-height 9999px
.site__footer
small
display inline-block
max-width 600px
font-size 10px
line-height 1.3
.site__footer__inappropriate-content
font-size 12px
| body
background-color $gallery
background-image url(/images/background-pattern.png)
background-size 300px auto
.site
height 100%
.logo__image
position relative
top -1px
margin-right .5rem
.logo__text
position relative
top 1px
height 15px
+above(md)
height 20px
.site__navigation
background white
position relative
z-index 100
box-shadow 0px 2px 4px 0px rgba(0,0,0,0.15)
padding .5rem
+above(lg)
padding 1rem 0
img
display inline-block
vertical-align middle
border none
.btn,
.btn.btn-primary
border-radius 0
font-size 12px
padding 9px
+above(md)
border-radius 3px
padding 9px 15px
font-size 14px
.site__content
position relative
padding 0
z-index 105
.site__mobile-navigation
max-height 0px
overflow hidden
transition all 300ms linear
padding 0 2rem
&.open
max-height 9999px
.site__footer
small
display inline-block
max-width 600px
font-size 10px
line-height 1.3
.site__footer__inappropriate-content
font-size 12px
| Fix z-index for new search location | Fix z-index for new search location
| Stylus | mit | WikiEducationFoundation/Wiki-Playlist,WikiEducationFoundation/Wiki-Playlist,WikiEducationFoundation/Wiki-Playlist |
d8feaabc657c9c04e80028bf19b62cba584e250d | app/styles/_parts/search/results-box.styl | app/styles/_parts/search/results-box.styl | .search
.page-content
.results-box
.panel-heading
i
margin-right 5px
.search-results-plugin
.title-container
margin-bottom 10px
.meta-search
display table
overflow hidden
text-overflow ellipsis
width auto
padding 0
li
display table-row
list-style none
label,span
display table-cell
font-weight 400
span
padding-left 20px
label
color #999
text-transform uppercase
font-size 12px
| .search
.page-content
.results-box
.panel-heading
i
margin-right 5px
.panel-body
.list-group
margin-bottom 0
.search-results-plugin
.title-container
margin-bottom 10px
.meta-search
display table
overflow hidden
text-overflow ellipsis
width auto
padding 0
li
display table-row
list-style none
label,span
display table-cell
font-weight 400
span
padding-left 20px
label
color #999
text-transform uppercase
font-size 12px
| Fix extra margin on search results sections | Fix extra margin on search results sections
| Stylus | mit | sergiolepore/hexo-plugin-site,sergiolepore/hexo-plugin-site |
d554d9dbeb860f845b8899e1578b2d1935b9886a | src/styles/pages/ForecastWeather.styl | src/styles/pages/ForecastWeather.styl | .forecast-weather-container
height: 100%
width: 100%;
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.forecast-weather
display: flex
padding: 50px
font-size: 1.2rem
font-family: cursive
text-align: center
color: #ccc
.day
display: flex
flex-direction: column
align-items: center
flex: 1
padding: 13px 5px 10px 5px
margin-right: 20px
background: rgba(160, 158, 151, 0.5)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 5px
&:last-child
margin-right: 0
span
margin-bottom: 8px
.date
font-size: 1rem
.city-name
margin-bottom: 8px
font-size: 1.4rem
.condition-text
margin-top: -9px
.button-container
margin-top: 35px
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| .forecast-weather-container
height: 100%
width: 100%;
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.forecast-weather
display: grid
grid-template-columns: repeat(7, 13%)
grid-column-gap: 15px
font-size: 1.2rem
font-family: cursive
text-align: center
color: #ccc
.day
display: flex
flex-direction: column
align-items: center
padding: 13px 5px 10px 5px
background: rgba(160, 158, 151, 0.5)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 5px
&:last-child
margin-right: 0
span
margin-bottom: 8px
.date
font-size: 1rem
.city-name
margin-bottom: 8px
font-size: 1.4rem
.condition-text
margin-top: -9px
.button-container
margin-top: 35px
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| Add grid to forecast weather | Add grid to forecast weather
| Stylus | mit | IvaPetkova/My-HTML-Projects |
feb768028925fa756a1d9bc0e1cac6b42d2a78fe | src/styles/pages/CurrentWeather.styl | src/styles/pages/CurrentWeather.styl | .current-weather-container
height: 100%
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.current-weather
display: flex
flex-direction: column
align-items: center
justify-content: center
background: rgba(160, 158, 151, 0.5)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 50%
width: 300px
height: 300px
font-size: 1.6rem
font-family: cursive
color: #ccc
.city-name
margin-bottom: 8px
font-size: 1.8rem
.button-container
margin: 20px 0
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| .current-weather-container
height: 100%
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.current-weather
display: flex
flex-direction: column
align-items: center
justify-content: center
background: rgba(160, 158, 151, 0.5)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 50%
width: 300px
height: 300px
font-size: 1.6rem
font-family: cursive
color: #ccc
.city-name
margin-bottom: 8px
font-size: 1.8rem
.button-container
margin: 30px 0
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| Change button margin in current weather | Change button margin in current weather
| Stylus | mit | IvaPetkova/My-HTML-Projects |
b062540d3501c5ae9c8f351ede3d21f8b0012dde | src/dabbit.styl | src/dabbit.styl | @import 'nib'
.CodeMirror.cm-s-MYTHEME
//TODO
| @import 'nib'
// FONTS --change that if you want a different
// source (default is Google Webfonts)
/// Inconsolata: 400 and 700
@import url('http://fonts.googleapis.com/css?family=Inconsolata:400,700');
.CodeMirror.cm-s-dabbit
background-image url('gray_jean.png') //TODO: retina
&.CodeMirror-focused
box-shadow inset .1em .1em .4em rgba(0,0,0, .5)
font 16px/1.5em Monaco, Consolas, Inconsolata, 'Deja Vu Sans Mono',
'Droid Sans Mono', 'Andale Mono', 'Lucida Console',
monospace //TODO
color black
text-shadow 0 1px 0 rgba(255,255,255, 1)
//SPACING
.CodeMirror-sizer
padding-left .8em
//GUTTER & ACTIVE LINE
/// Let the gutter have a border
.CodeMirror-gutters
background-color transparent
border-right 0
.CodeMirror-lines
border-left solid 0.13em rgba(85,33,0, .11) //FIXME: not pixel-perfect
/// Only show active line number
.CodeMirror-linenumber
visibility hidden
/**&.CodeMirror-focused**/ .CodeMirror-activeline .CodeMirror-linenumber
visibility visible
/// Style active line
.CodeMirror-activeline
.CodeMirror-linebackground
//TODO: fake alpha-multiply effect
background rgba(153,122,102, 0.08)
background linear-gradient(left, rgba(153,122,102, 0.11) 70%, rgba(153, 122,102, 0.04))
// a nasty trick to get it span through all the line
position absolute
left -50px
padding-left 50px
/// Style the line numbers
.CodeMirror-linenumber
display inline-block
position relative
width auto !important
height 1.3em
min-width .7em
padding .1em .6em 0
margin 0 .4em 0 -.75em
text-align center
color rgba(245,242,240, 1)
font bold 65%/1.5 sans-serif
background-color rgba(153,122,102, .4)
box-shadow 0 1px white
text-shadow none
vertical-align .1em
border-radius 999px
//TOKEN STYLING
//TODO
//SELECTION
.CodeMirror-selected, &.CodeMirror-focused .CodeMirror-selected
background-color rgba(153,122,102, .5)
.CodeMirror-selectedtext
color white
text-shadow 0 -1px 1px rgba(153,122,102, 1)
//TODO: scrolling bar
| ADD THE THEME!!! (not complete, though) | ADD THE THEME!!! (not complete, though) | Stylus | bsd-2-clause | jmendeth/CodeMakeup-dabbit,jmendeth/CodeMakeup-dabbit |
f898d6297f121865f3c9f92de0638243704dc900 | src/typography.styl | src/typography.styl | body
font-family sans-serif
pre,
code
font-family Courier, Monaco, monospace
h1
font-family sans
font-size 2.285em
margin 0.93rem 0
padding 0
h2
font-family sans
font-size 2.019em
margin 0.83rem 0
padding 0
h3
font-family sans
font-size 1.894em
margin 0.73rem 0
padding 0
h4
font-family sans
font-size 1.611em
margin 0.63rem 0
padding 0
h5
font-family sans
font-size 1.361em
margin 0.53rem 0
padding 0
h6
font-family sans
font-size 1.059em
margin 0.43rem 0
padding 0
| body
font-family sans-serif
pre,
code
font-family Courier, Monaco, monospace
h1
font-family sans
font-size 2.285em
margin 0.93rem 0
padding 0
h2
font-family sans
font-size 2.019em
margin 0.83rem 0
padding 0
h3
font-family sans
font-size 1.894em
margin 0.73rem 0
padding 0
h4
font-family sans
font-size 1.511em
margin 0.63rem 0
padding 0
h5
font-family sans
font-size 1.321em
margin 0.53rem 0
padding 0
h6
font-family sans
font-size 0.959em
margin 0.43rem 0
padding 0
| Reduce font size for h4, 5 and 6 | Reduce font size for h4, 5 and 6
| Stylus | mit | grauwoelfchen/styr |
ff85671d299de84d8068dcff7dfefa10ce004a75 | src/render/assets/styles/main.css.styl | src/render/assets/styles/main.css.styl |
// Import plugins
@import 'jeet'
@import 'rupture'
@import 'typographic'
// Import partials
@import 'partials/reset.inc'
@import 'partials/typography.inc'
@import 'partials/color.inc'
@import 'partials/base.inc'
@import 'partials/header.inc'
@import 'partials/footer.inc'
| ---
referencesOthers: true
---
// Import plugins
@import 'jeet'
@import 'rupture'
@import 'typographic'
// Import partials
@import 'partials/reset.inc'
@import 'partials/typography.inc'
@import 'partials/color.inc'
@import 'partials/base.inc'
@import 'partials/header.inc'
@import 'partials/footer.inc'
| Make docpad re-render changed stylus partials | Make docpad re-render changed stylus partials
| Stylus | mit | rychipman/ryanchipman.com |
f296ccf68df34ebb5518fcee113697fdc46677fb | imports/stylesheets/tooltips.import.styl | imports/stylesheets/tooltips.import.styl | .tooltip-inner
max-width 350px
color $tooltip-text-color
font-weight 600
font-size 1em
.popover
z-index $cosmos-layer
min-width 300px
font-size 12px
.quote-text
font-style italic
.popover-content
overflow hidden
text-overflow ellipsis
color $d-gray
font-weight normal
font-size 14px
line-height 1.3
.close-popover
display none
+below(3)
display block
position absolute
top -5px
right -5px
color $d-gray
font-size 22px
.popover
.tooltip
.tooltip-inner
.popover-content
+below(3)
min-width 200px
max-width 325px
.tooltip
for direction in top bottom right left
&.{direction}
& > .tooltip-inner
background-color $tooltip-BG-color
& > .tooltip-arrow
border-{direction}-color $tooltip-BG-color
.with-info-tooltip
&::after
content '\f05a' // fa-info-circle
display inline-block
icon()
color darken($border-primary, 40%)
margin-left .5em
&:hover
&::after
color $primary
| .tooltip-inner
max-width 350px
color $tooltip-text-color
font-weight 600
font-size 1em
.popover
min-width 300px
font-size 12px
.quote-text
font-style italic
.popover-content
overflow hidden
text-overflow ellipsis
color $d-gray
font-weight normal
font-size 14px
line-height 1.3
.close-popover
display none
+below(3)
display block
position absolute
top -5px
right -5px
color $d-gray
font-size 22px
.popover
.tooltip
.tooltip-inner
.popover-content
z-index $cosmos-layer + 1
+below(3)
min-width 200px
max-width 325px
.tooltip
for direction in top bottom right left
&.{direction}
& > .tooltip-inner
background-color $tooltip-BG-color
& > .tooltip-arrow
border-{direction}-color $tooltip-BG-color
.with-info-tooltip
&::after
content '\f05a' // fa-info-circle
display inline-block
icon()
color darken($border-primary, 40%)
margin-left .5em
&:hover
&::after
color $primary
| Fix z-index issue with incident form tooltips | Fix z-index issue with incident form tooltips
| Stylus | apache-2.0 | ecohealthalliance/eidr-connect,ecohealthalliance/eidr-connect,ecohealthalliance/eidr-connect,ecohealthalliance/eidr-connect |
bf774537421b08a585d60234ebc4d0000c7eac18 | client/src/app/components/chart/chart.styl | client/src/app/components/chart/chart.styl | .chart
width 100%
height 300px
display flex
justify-content center
align-items center
margin-bottom 50px
.chart-mini
height 150px
width 90%
display flex
justify-content center
align-items center
.chart.-mini .amcharts-axis-zero-grid
stroke-width: 0
stroke-opacity: 0
.chart a
opacity .3 !important
.chart .amcharts-graph-line
animation fadeIn 0.3s ease-in-out
@keyframes fadeIn
0% opacity 0
100% opacity 1
.amcharts-balloon-bg
height 22p
y: 8.5
.amcharts-balloon-div:last-child
margin-top: 8px
| .chart
width 100%
height 300px
display flex
justify-content center
align-items center
margin-bottom 50px
.chart-mini
height 150px
width 90%
display flex
justify-content center
align-items center
.chart-mini .amcharts-axis-zero-grid
stroke-width: 0
stroke-opacity: 0
.chart a
opacity .3 !important
.chart .amcharts-graph-line
animation fadeIn 0.3s ease-in-out
@keyframes fadeIn
0% opacity 0
100% opacity 1
.amcharts-balloon-bg
height 22p
y: 8.5
.amcharts-balloon-div:last-child
margin-top: 8px
| Fix class name to remove grid | Fix class name to remove grid
| Stylus | mit | mitsuishihidemi/dowser,mitsuishihidemi/dowser,mitsuishihidemi/dowser |
992f7c27309856e4bd131dbed71a8ce7d54df92a | desktop/components/commercial_filter/filters/keyword/index.styl | desktop/components/commercial_filter/filters/keyword/index.styl | #keyword-search-bar-container
margin-bottom 20px
| #keyword-search-bar-container
margin-bottom 20px
.icon-search
color #666
input#keyword-search-bar-input
&::placeholder
color #666
| Correct color for keyword search placeholder and icon | Correct color for keyword search placeholder and icon
| Stylus | mit | anandaroop/force,eessex/force,xtina-starr/force,damassi/force,eessex/force,artsy/force-public,artsy/force,artsy/force,kanaabe/force,joeyAghion/force,oxaudo/force,damassi/force,artsy/force-public,erikdstock/force,oxaudo/force,xtina-starr/force,kanaabe/force,anandaroop/force,cavvia/force-1,izakp/force,yuki24/force,yuki24/force,izakp/force,erikdstock/force,mzikherman/force,kanaabe/force,mzikherman/force,eessex/force,cavvia/force-1,izakp/force,eessex/force,damassi/force,cavvia/force-1,cavvia/force-1,anandaroop/force,artsy/force,artsy/force,mzikherman/force,yuki24/force,oxaudo/force,damassi/force,izakp/force,erikdstock/force,xtina-starr/force,kanaabe/force,xtina-starr/force,joeyAghion/force,anandaroop/force,erikdstock/force,kanaabe/force,mzikherman/force,joeyAghion/force,yuki24/force,oxaudo/force,joeyAghion/force |
14ef1a237f82c2e2d9ff59bc82967784247909b0 | source/static/styles/main.styl | source/static/styles/main.styl | @import "core/variables" // System variables
@import "_variables" // Project variables
@import "core/mixins" // System mixins
@import "_mixins" // Project mixins
@import "../../../tmp/icons-template.styl" // Svg icons
// Png sprites
@import "../../../tmp/sprite.styl" if file-exists("../../../tmp/sprite.styl")
// Plugins
// @import 'plugin-name/plugin-style.css'
// @import 'plugin-name/plugin-style.styl'
// Modules
@import "../../modules/**/!(_)*.styl"
// Modules
@import "_common"
| @import "core/variables" // System variables
@import "_variables" // Project variables
@import "core/mixins" // System mixins
@import "_mixins" // Project mixins
// Svg icons
@import "../../../tmp/icons-template.styl" if file-exists("../../../tmp/icons-template.styl")
// Png sprites
@import "../../../tmp/sprite.styl" if file-exists("../../../tmp/sprite.styl")
// Plugins
// @import 'plugin-name/plugin-style.css'
// @import 'plugin-name/plugin-style.styl'
// Modules
@import "../../modules/**/!(_)*.styl"
@import "_common"
| Add if file exist check for icons-template.styl | Add if file exist check for icons-template.styl
| Stylus | mit | bkzhn/gulp-front,Zoxon/gulp-front,bkzhn/gulp-front,Zoxon/gulp-front |
bcaa69863508344c5471225c13f800647a313288 | clients/web/src/stylesheets/body/userList.styl | clients/web/src/stylesheets/body/userList.styl | .g-user-list-entry
padding 11px 14px
margin 2px 0
border-radius 3px
background-color #fafafc
border 1px solid #eaeaea
box-shadow inset 0 0 2px 2px #f4f4f4
.g-user-title
font-size 17px
.g-user-login
color #666
font-size 16px
font-weight bold
.g-space-used
margin-top 2px
.g-user-status
margin-top 2px
color #d9534f
.g-user-right-column
border-left 1px solid #ddd
padding-left 8px
display inline
width 235px
font-size 14px
float right
color #909090
.g-user-joined-date, .g-user-space-used
color #444
.g-user-list-header
padding-bottom 10px
.g-user-pagination
display inline-block
>ul
margin 0 13px 0 0
.pagination>li>a
float none
line-height 1.5
padding 7px 12px
.g-user-sort
display inline-block
.g-user-search-form
display inline
.form-group
display inline-block
input[type="text"]
width 170px
margin-right 13px
| .g-user-list-entry
padding 11px 14px
margin 2px 0
border-radius 3px
background-color #fafafc
border 1px solid #eaeaea
box-shadow inset 0 0 2px 2px #f4f4f4
.g-user-title
font-size 17px
.g-user-login
color #666
font-size 16px
font-weight bold
.g-space-used
margin-top 2px
.g-user-status
margin-top 2px
color #d9534f
.g-user-right-column
border-left 1px solid #ddd
padding-left 8px
display inline
width 235px
font-size 14px
float right
color #909090
.g-user-joined-date, .g-user-space-used
color #444
.g-user-list-header
padding-bottom 10px
.g-user-pagination
display inline-block
>ul
margin 0 13px 0 0
.pagination>li>a
float none
line-height 1.5
padding 7px 12px
.g-user-sort
display inline-block
margin-right: 12px
.g-user-search-form
display inline
.form-group
display inline-block
input[type="text"]
width 170px
margin-right 13px
| Add a small right margin to the userSort widget | Add a small right margin to the userSort widget
| Stylus | apache-2.0 | Kitware/girder,girder/girder,manthey/girder,Xarthisius/girder,manthey/girder,Xarthisius/girder,kotfic/girder,data-exp-lab/girder,RafaelPalomar/girder,girder/girder,manthey/girder,kotfic/girder,adsorensen/girder,Kitware/girder,kotfic/girder,data-exp-lab/girder,adsorensen/girder,data-exp-lab/girder,RafaelPalomar/girder,data-exp-lab/girder,Xarthisius/girder,data-exp-lab/girder,girder/girder,manthey/girder,Kitware/girder,girder/girder,RafaelPalomar/girder,jbeezley/girder,jbeezley/girder,Kitware/girder,adsorensen/girder,kotfic/girder,RafaelPalomar/girder,kotfic/girder,adsorensen/girder,Xarthisius/girder,RafaelPalomar/girder,jbeezley/girder,jbeezley/girder,adsorensen/girder,Xarthisius/girder |
2d2c6711f61c450108d6d27e68778f772aaa9de4 | app/stylesheets/_/tisshubox/pagebar.styl | app/stylesheets/_/tisshubox/pagebar.styl | .pagebar
margin 7px 0 -3px
display flex
justify-content center
font-size 0.8rem
z-index 100
.page
padding 0 5px
transition-property color, opacity
transition-duration @transition-duration
&:not(.current)
opacity 0.5
&.dummy
visibility hidden
.fa-circle-o-notch
font-size 0.9em
&.page-enter
opacity 0
&.page-leave-active
position absolute
&.page-move
transition-property transform
transition-duration @transition-duration
| .pagebar
margin 7px 0 -3px
display flex
justify-content center
font-size 0.8rem
z-index 100
.page
padding 0 5px
transition-property color, opacity, transform
transition-duration @transition-duration
&:not(.current)
opacity 0.5
&.dummy
visibility hidden
.fa-circle-o-notch
font-size 0.9em
&.page-enter
opacity 0
&.page-leave-active
position absolute
| Make page bar feel better | Make page bar feel better
| Stylus | isc | stawberri/tisshubox,stawberri/tisshubox |
5a53a83e1ca4814b1f9390b7a8bebfbd7f513e31 | components/filter/index.styl | components/filter/index.styl | .channel-filter
width 100%
position relative
padding-right 20px
input.input--wide
padding-left 50px
margin 0 (unit / 2)
input:focus
background backgroundgray
&__status
position absolute
height 100%
width 50px
left 10px
top 0
display flex
align-items center
justify-content center
&__icon
svg
height 20px
width 20px
.iconic-magnifying-glass-lg
display none
.iconic-magnifying-glass-md
display none
.iconic-magnifying-glass-sm
display inline
& *
stroke lightgray
fill lightgray
&__close
font-size 31px
display none
color lightgray
cursor pointer
&:hover
color textgray
&--list
font-size 13px
border-bottom 1px dotted bordergray
.form__field__channel-filter__icon
padding 18px
svg
height 15px
&--grid
margin-bottom unit
&.is-active
.channel-filter__status__close
display block
.channel-filter__status__icon
display none | .channel-filter
width 100%
position relative
input.input--wide
padding-left 50px
margin 0 (unit / 2)
background white
input:focus
background backgroundgray
&__status
position absolute
height 100%
width 50px
left 10px
top 0
display flex
align-items center
justify-content center
&__icon
svg
height 20px
width 20px
.iconic-magnifying-glass-lg
display none
.iconic-magnifying-glass-md
display none
.iconic-magnifying-glass-sm
display inline
& *
stroke lightgray
fill lightgray
&__close
font-size 31px
display none
color lightgray
cursor pointer
&:hover
color textgray
&--list
font-size 13px
border-bottom 1px dotted bordergray
input.input--wide
margin 0
.channel-filter__status
left 0
&--grid
padding-right 20px
margin-bottom unit
&.is-active
.channel-filter__status__close
display block
.channel-filter__status__icon
display none | Fix padding on channel filter | Fix padding on channel filter
| Stylus | mit | aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell |
27640a59411f96b52784aea23fdaa697fb5eaac3 | src/styles/pages/CurrentWeather.styl | src/styles/pages/CurrentWeather.styl | .current-weather-container
height: 100%
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.current-weather
background: rgba(160, 158, 151, 0.7)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 50%
width: 350pxs
height: 350px
font-size: 1.6rem
font-family: cursive
position: absolute
top: 60%
left: 50%
transform: translate(-50%, -50%)
text-align: center
color: #ccc
span
display: block
.city-name
margin-bottom: 8px
font-size: 1.8rem
.condition-text
margin-top: -9px
.button-container
margin-top: 35px
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| .current-weather-container
height: 100%
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.current-weather
display: flex
flex-direction: column
align-items: center
justify-content: center
background: rgba(160, 158, 151, 0.7)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 50%
width: 350px
height: 350px
font-size: 1.6rem
font-family: cursive
color: #ccc
.city-name
margin-bottom: 8px
font-size: 1.8rem
.button-container
margin-top: 35px
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| Update style of current weather container | Update style of current weather container
| Stylus | mit | IvaPetkova/My-HTML-Projects |
7eb3d1e4deb7fa554b001fdd84d109f4e4a61c4f | lib/misc/browser-warning.styl | lib/misc/browser-warning.styl | // vars
// blocks
browser-warning-block := {
display : none
}
browser-warning-visible-block := {
margin-top : 0
color : $base3
background : lightness($red, 20%)
display : block
padding : 1em
width : 100%
top : 0
z-index : 10000
}
// rules
.browser-warning
{browser-warning-block}
.lt-ie9 .browser-warning
position : fixed
{browser-warning-visible-block}
| // vars
// blocks
browser-warning-block := {
display : none
}
browser-warning-visible-block := {
margin-top : 0
color : $base3
background : lightness($red, 20%)
display : block
padding : 1em
width : 100%
top : 0
z-index : 10000
}
// rules
.browser-warning
{browser-warning-block}
.lt-ie9
.browser-warning
position : fixed
{browser-warning-visible-block}
main
display : none
| Hide main element on lt-ie9 class. | Hide main element on lt-ie9 class.
| Stylus | mit | socialally/aqua,socialally/aqua |
389f337ff50f756fb587bd7f07a03fcea8232429 | src/css/tag_autocomplete.styl | src/css/tag_autocomplete.styl | .mac-tag-autocomplete
position relative
display inline-block
border 1px solid #aaaaaa
background #ffffff
margin 0
padding 0
.tag-list
margin 0px
.tag
padding 3px 20px 3px 5px
margin 3px
position relative
display inline-block
list-style none
font-size 13px
line-height 13px
border-radius 3px
&.label
background linear-gradient(top,#eaf0ff,#dee8ff)
border 1px solid #bfc9e1
text-shadow none
color #000
font-weight normal
box-shadow 0px 0px 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05)
.tag-close
position absolute
right 6px
color #9da6b7
cursor pointer
&.input-tag
white-space nowrap
padding 0
.text-input
color #666
background transparent
padding 5px
margin 0px
border none !important
box-shadow none
&.fullwidth
width 100%
.text-input
width 90%
| .mac-tag-autocomplete
position relative
display inline-block
border 1px solid #aaaaaa
background #ffffff
margin 0
padding 0
.tag-list
margin 0px
padding-left 0px
.tag
padding 3px 20px 3px 5px
margin 3px
position relative
display inline-block
list-style none
font-size 13px
line-height 13px
border-radius 3px
&.label
background linear-gradient(top,#eaf0ff,#dee8ff)
border 1px solid #bfc9e1
text-shadow none
color #000
font-weight normal
box-shadow 0px 0px 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05)
.tag-close
position absolute
right 6px
color #9da6b7
cursor pointer
&.input-tag
white-space nowrap
padding 0
.text-input
color #666
background transparent
padding 5px
margin 0px
border none !important
box-shadow none
&.fullwidth
width 100%
.text-input
width 90%
| Remove left padding in tag list | fix(macTagAutocomplete): Remove left padding in tag list
| Stylus | mit | angular-macgyver/MacGyver,angular-macgyver/MacGyver,angular-macgyver/MacGyver |
722fb8ccdeb80f4d788ae9e2aeef132358b726b3 | client/common/rcd_logo/rcd_logo.styl | client/common/rcd_logo/rcd_logo.styl | // Replace "Nodeca" text in navbar with logo.svg
//
@import "nodeca.core/client/common/_variables"
.navbar-brand
background-image url('$$ JSON.stringify("data:image/svg+xml;base64," + new Buffer(asset_body("rcd-nodeca/client/common/rcd_logo/logo.svg")).toString("base64")) $$')
background-repeat no-repeat
background-size auto 25px
background-position 0 6px
width 136px
margin-right 1rem !important
// hide text, but still make it available for screen readers and such;
// avoid text appearing when user highlights it
text-indent -1000px
| // Replace "Nodeca" text in navbar with logo.svg
//
@import "nodeca.core/client/common/_variables"
.navbar-brand
background-image url('$$ JSON.stringify("data:image/svg+xml;base64," + new Buffer(asset_body("rcd-nodeca/client/common/rcd_logo/logo.svg")).toString("base64")) $$')
background-repeat no-repeat
background-size auto 25px
background-position 0 6px
width 136px
margin-right 1rem !important
// hide text, but still make it available for screen readers and such;
// avoid text appearing when user highlights it
text-indent -1000px
overflow hidden // needed for correct link outline
| Fix logo link outline on click | Fix logo link outline on click
| Stylus | mit | rcdesign/rcd-nodeca,rcdesign/rcd-nodeca |
8c721abdc184e82a6f37a0a862e52a87dc5637b8 | src/styles/pages/CurrentWeather.styl | src/styles/pages/CurrentWeather.styl | .current-weather-container
height: 100%
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.current-weather
display: flex
flex-direction: column
align-items: center
justify-content: center
background: rgba(160, 158, 151, 0.5)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 50%
width: 400px
height: 400px
font-size: 1.6rem
font-family: cursive
color: #ccc
margin-bottom: 20px;
.city-name
margin-bottom: 8px
font-size: 1.8rem
text-align: center
.button-container
margin: 30px 0
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
| .current-weather-container
height: 100%
display: none
flex-direction: column-reverse
align-items: center
justify-content: space-around
opacity: 0
.current-weather
display: flex
flex-direction: column
align-items: center
justify-content: center
background: rgba(160, 158, 151, 0.5)
box-shadow: 4px 0 25px 3px rgba(0, 0, 0, 0.1)
border-radius: 50%
width: 400px
height: 400px
font-size: 1.6rem
font-family: cursive
color: #ccc
margin-bottom: 20px;
.city-name
margin-bottom: 8px
font-size: 1.8rem
text-align: center
.button-container
margin: 30px 0
.btn
text-align: center
&.show
opacity: 1
transition: opacity .3s
display: flex
@media (max-width: 540px)
.current-weather
width: 45vh
height: 45vh
@media (max-height: 850px)
.current-weather
width: 45vh
height: 45vh
| Fix current weather container for mobile version | Fix current weather container for mobile version
| Stylus | mit | IvaPetkova/My-HTML-Projects |
f306131424bf09a64f581be5d25345c49ab7cd82 | src/styles/app.styl | src/styles/app.styl | @import 'cozy-ui'
.pho-wrapper
@extend $app-2panes-sticky
.pho-content
top-padded(30px)
@media (max-width: (768/basefont)rem)
top-padded(10px)
| @import 'cozy-ui'
.pho-wrapper
@extend $app-2panes-sticky
.pho-content
top-padded(30px)
@media (max-width: (480/basefont)rem)
top-padded(10px)
| Fix responsive margin before topbar | [style] Fix responsive margin before topbar
| Stylus | agpl-3.0 | cozy/cozy-files-v3,y-lohse/cozy-files-v3,enguerran/cozy-files-v3,nono/cozy-photos-v3,y-lohse/cozy-files-v3,y-lohse/cozy-files-v3,goldoraf/cozy-drive,nono/cozy-files-v3,y-lohse/cozy-photos-v3,y-lohse/cozy-photos-v3,cozy/cozy-files-v3,enguerran/cozy-drive,cozy/cozy-photos-v3,enguerran/cozy-drive,cozy/cozy-files-v3,nono/cozy-files-v3,nono/cozy-photos-v3,y-lohse/cozy-drive,enguerran/cozy-files-v3,y-lohse/cozy-drive,enguerran/cozy-drive,goldoraf/cozy-photos-v3,nono/cozy-files-v3,enguerran/cozy-files-v3,y-lohse/cozy-drive,y-lohse/cozy-drive,goldoraf/cozy-drive,goldoraf/cozy-drive,goldoraf/cozy-drive,enguerran/cozy-files-v3,nono/cozy-files-v3,goldoraf/cozy-photos-v3,cozy/cozy-photos-v3,cozy/cozy-files-v3,enguerran/cozy-drive |
b95c621827e16b616af80a64b5e4e458e77f6546 | src/stylus/components/tabs.styl | src/stylus/components/tabs.styl | @require '../_variables.styl';
.tabs
position fixed
top auto
right 0
left 0
bottom 0
z-index 10
display block
width 100%
height tab-height
background-color tab-background-color
backface-visibility hidden
padding 0
.tab-items
display flex
align-items center
justify-content center
.tab-item
position relative
white-space nowrap
text-overflow ellipsis
overflow hidden
flex-basis 100%
width 100%
height tab-height
line-height tab-height
color primary
text-align center
text-transform uppercase
vertical-align middle
padding 0
margin 0
.icon
position relative
top 3px
width tab-icon-size
height tab-icon-size
vertical-align middle
padding 0
margin 0
.tab-indicator
width 50%
position absolute
z-index 11
top auto
left 0
right 0
margin-top auto
margin-bottom -(tab-indicator-height)
height tab-indicator-height
background-color tab-indicator-color
translate-3d(0, 0, 0)
webkit-transform-one(300ms)
.header-tabs
top auto
bottom 0
.tab-indicator
margin-top -(tab-indicator-height)
margin-bottom auto
| @require '../_variables.styl';
.tabs
position fixed
top auto
right 0
left 0
bottom 0
z-index 10
display block
width 100%
height tab-height
background-color tab-background-color
backface-visibility hidden
padding 0
.tab-items
display flex
box-orient horizontal
.tab-item
display flex
flex-basis 100%
flex-grow 1
align-items center
justify-content center
height tab-height
line-height tab-height
white-space nowrap
text-overflow ellipsis
overflow hidden
color primary
text-align center
text-transform uppercase
vertical-align middle
padding 0
margin 0
.icon
position relative
top 3px
width tab-icon-size
height tab-icon-size
vertical-align middle
text-align center
padding 0
margin 0
.tab-indicator
width 50%
position absolute
z-index 11
top auto
left 0
right 0
margin-top auto
margin-bottom -(tab-indicator-height)
height tab-indicator-height
background-color tab-indicator-color
translate-3d(0, 0, 0)
webkit-transform-one(300ms)
.header-tabs
top auto
bottom 0
.tab-indicator
margin-top -(tab-indicator-height)
margin-bottom auto
| Fix tab width in JellyBean | Fix tab width in JellyBean
| Stylus | mit | oksiquatzel/Phonon-Framework,alfoadd/Phonon-Framework,alfoadd/Phonon-Framework,oksiquatzel/Phonon-Framework |
a648b6a8c631a07579f897c0d5ef5fffae139328 | src/index.styl | src/index.styl | // @stylint off
@import url("~clusterize.js/clusterize.css");
// @stylint on
.infinite-tree {
}
.infinite-tree-scroll {
max-height: 200px;
overflow: auto;
}
.infinite-tree-content {
// Outline removes default browser's borders for focused elements.
outline: 0;
.tree-selected.tree-item,
.tree-selected.tree-item:hover {
background: #deecfd;
border: 1px solid #0066cc;
}
.tree-item {
border: 1px solid transparent;
cursor: pointer;
user-select: none;
}
.tree-item:hover {
background: #f2fdff;
}
.tree-toggler {
}
.tree-title {
}
}
| .infinite-tree {
}
.infinite-tree-scroll {
overflow: auto;
}
.infinite-tree-content {
// Outline removes default browser's borders for focused elements.
outline: 0;
.tree-selected.tree-item,
.tree-selected.tree-item:hover {
background: #deecfd;
border: 1px solid #0066cc;
}
.tree-item {
border: 1px solid transparent;
cursor: pointer;
user-select: none;
}
.tree-item:hover {
background: #f2fdff;
}
.tree-toggler {
}
.tree-title {
}
}
// centering message that appears when no data provided
.infinite-tree-no-data {
text-align: center;
}
| Add infinite-tree-no-data class for empty data | Add infinite-tree-no-data class for empty data
| Stylus | mit | cheton/infinite-tree |
bb3cd151c8b5844a73d2105cae816094553174e1 | src/components/breadcrumbs/extras.styl | src/components/breadcrumbs/extras.styl | .breadcrumb-arrow
padding: 0
li
margin-left: -4px
&:first-child
margin-left: 0
+ li:before
content: none
a
color: #fff
background-color: $brand-primary
transition: background-color .2s
&.active a
color: $breadcrumb-color
background-color: transparent
a, span
display: inline-block
padding $breadcrumb-padding-vertical $breadcrumb-padding-horizontal
padding-left: 20px
a
position: relative
z-index: auto
&:after, &:before
position: absolute
top: 0
width: 0
height: 0
content: ''
border-top: 18px solid transparent
border-bottom: 18px solid transparent
transform: none
left: auto !important
background-color: transparent !important
&:before
right: -10px
z-index: 3
border-left-color: $brand-primary
border-left-style: solid
border-left-width: 11px
transition: border-left-color .2s
&:after
right: -11px
z-index: 2
border-left: 11px solid darken($brand-primary, 20%)
&:hover
background-color: lighten($brand-primary, 20%)
&:before
border-left-color: lighten($brand-primary, 20%)
| .breadcrumb-arrow
padding: 0
overflow: hidden
li
margin-left: -4px
&:first-child
margin-left: 0
+ li:before
content: none
a
color: #fff
background-color: $brand-primary
transition: background-color .2s
&.active a
color: $breadcrumb-color
background-color: transparent
a, span
display: inline-block
padding $breadcrumb-padding-vertical $breadcrumb-padding-horizontal
padding-left: 20px
a
position: relative
z-index: auto
&:after, &:before
position: absolute
top: 0
width: 0
height: 0
content: ''
border-top: 18px solid transparent
border-bottom: 18px solid transparent
transform: none
left: auto !important
background-color: transparent !important
&:before
right: -10px
z-index: 3
border-left-color: $brand-primary
border-left-style: solid
border-left-width: 11px
transition: border-left-color .2s
&:after
right: -11px
z-index: 2
border-left: 11px solid darken($brand-primary, 20%)
&:hover
background-color: lighten($brand-primary, 20%)
&:before
border-left-color: lighten($brand-primary, 20%)
| Add overflow:hidden so the item backgrounds don't overflow the container | Add overflow:hidden so the item backgrounds don't overflow the container
| Stylus | mit | mosaiqo/kaleidoscope,mosaiqo/kaleidoscope |
334d4fd267a4be50d8cd9ce0358ad20cf2034f56 | lib/kouto-swiss/grid/column.styl | lib/kouto-swiss/grid/column.styl | col( size = false )
unless size
size = ks-grid-config[ "columns" ]
display inline-block
float left
overflow hidden
width: round( ks-grid-config[ "total-width" ] * ( ( ( ( ks-grid-config[ "gutter-width" ] + ks-grid-config[ "column-width" ] ) * size ) - ks-grid-config[ "gutter-width" ] ) / ks-grid-config[ "computed-total-width" ] ), 5 )
margin: 0 round( ks-grid-config[ "total-width" ] * ( ( ks-grid-config[ "gutter-width" ] * .5 ) / ks-grid-config[ "computed-total-width" ] ), 5 )
| col( size = false )
unless size
size = ks-grid-config[ "columns" ]
display inline-block
float left
overflow hidden
if ks-grid-config[ "type" ] == "fixed"
width: round( ks-grid-config[ "total-width" ] * ( ( ( ( ks-grid-config[ "gutter-width" ] + ks-grid-config[ "column-width" ] ) * size ) - ks-grid-config[ "gutter-width" ] ) / ks-grid-config[ "computed-total-width" ] ), 5 )
margin: 0 round( ks-grid-config[ "total-width" ] * ( ( ks-grid-config[ "gutter-width" ] * .5 ) / ks-grid-config[ "computed-total-width" ] ), 5 )
if ks-grid-config[ "type" ] == "fluid"
_total = unit( ks-grid-config[ "total-width" ], "" )
_col = unit( ks-grid-config[ "column-width" ], "" )
_gut = unit( ks-grid-config[ "gutter-width" ], "" )
_comp = unit( ks-grid-config[ "computed-total-width" ], "" )
width: unit( _total * ( ( ( ( _gut + _col ) * size ) - _gut ) / _comp ), "%" )
margin: 0 unit( _total * ( ( _gut * .5 ) / _comp ), "%" )
| Add fluid grid system support in col mixin | Add fluid grid system support in col mixin
| Stylus | mit | girassolbit/kouto-swiss,greyhwndz/kouto-swiss,leny/kouto-swiss,leny/kouto-swiss,girassolbit/kouto-swiss,krkn/kouto-swiss,krkn/kouto-swiss,greyhwndz/kouto-swiss |
4bb309724f58df8498c3163d30151cb184cc777d | src/components/Announcements/Announcements.styl | src/components/Announcements/Announcements.styl | /*
* Copyright (C) 2012-2019 Online-Go.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
.Announcements {
position: fixed;
top: navbar-height;
right: 0;
z-index: z.announcements;
.announcement {
width: 13rem;
themed background-color bg
box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.16);
overflow: hidden;
.fa-times-circle {
padding: 0.3rem;
cursor: pointer;
}
}
}
| /*
* Copyright (C) 2012-2019 Online-Go.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
.Announcements {
position: fixed;
top: navbar-height;
right: 0;
z-index: z.announcements;
.announcement {
width: 13rem;
themed background-color bg
box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.16);
overflow: hidden;
.fa-times-circle {
padding: 0.3rem;
cursor: pointer;
}
}
}
&.zen .Announcements {
display: none;
}
| Hide announcements in zen mode | Hide announcements in zen mode
| Stylus | agpl-3.0 | online-go/online-go.com,online-go/online-go.com,online-go/online-go.com,online-go/online-go.com,online-go/online-go.com |
5860037408582c560283bcf7e454174eff3c98fe | client.src/modules/profile/views/profile-view/profile-view.styl | client.src/modules/profile/views/profile-view/profile-view.styl | .profile-view
width 800px
margin 0 auto
display flex
.profile-left-bar
width 200px
img
width 200px
border-radius 7px
margin-bottom 10px
.profile-names
padding-bottom 20px
margin-bottom 20px
border-bottom 1px solid $borderColor
span
display block
&.full-name
font-weight bold
font-size 23px
margin-bottom 10px
&.username
font-size 20px
font-weight 200
color $mediumTextColor
.gistbook-count
padding-bottom 20px
margin-bottom 20px
border-bottom 1px solid $borderColor
color $lightTextColor
span
font-weight bold
font-size 28px
color $textColor
.profile-list
flex 1
margin-right 30px
.gistbook-title
flex 1
.gists-container
.notification
margin-top 20px
.gistbook-list
height 40px
line-height 40px
display flex
border-bottom 1px solid $borderColor
padding 0 10px
ul
align-self flex-end
a
font-weight bold
color $hoverLinkColor
.octicon
color $lightTextColor
.octicon-trashcan
cursor pointer
| .profile-view
width 800px
margin 0 auto
display flex
.profile-left-bar
width 200px
img
width 200px
border-radius 7px
margin-bottom 10px
.profile-names
padding-bottom 20px
margin-bottom 20px
border-bottom 1px solid $borderColor
span
display block
&.full-name
font-weight bold
font-size 23px
margin-bottom 10px
&.username
font-size 20px
font-weight 200
color $mediumTextColor
.gistbook-count
padding-bottom 20px
margin-bottom 20px
border-bottom 1px solid $borderColor
color $lightTextColor
span
font-weight bold
font-size 28px
color $textColor
.profile-list
flex 1
margin-right 30px
.gistbook-title
flex 1
.notification
margin-top 20px
.gistbook-list
height 40px
line-height 40px
display flex
border-bottom 1px solid $borderColor
padding 0 10px
ul
align-self flex-end
a
font-weight bold
color $hoverLinkColor
.octicon
color $lightTextColor
.octicon-trashcan
cursor pointer
| Fix margin on profile page notification. | Fix margin on profile page notification.
Resolves #187
| Stylus | mit | joshbedo/gistbook,appleboy/gistbook,jmeas/gistbook |
7cffc029558b4b117bf7cfd75517728f76c10a39 | app/assets/stylesheets/modules/_dashboard.styl | app/assets/stylesheets/modules/_dashboard.styl | .dashboard
> header
text-align left
display flex
align-items center
padding 60px 0 0 0
h1
color #A0A0A0
font-weight 300
font-size 50px
flex 1
margin-bottom 0
+ .course,
+ h2
margin-top 60px
h2
font-size 30px
font-weight 300
color #A0A0A0
.button
margin-left 0
.icon
vertical-align middle
margin-left 12px
font-size 15px
&.stacked
margin-top 10px
.empty-state
margin-top 18px
max-width 600px
font-size 19px
p
margin-bottom 8px
p.small
font-size 15px
.button
margin-top 18px
margin-bottom 18px
#user_courses
margin-bottom 60px
background #fff
border 1px solid $border_lt
box-shadow 0px 1px 2px rgba(0,0,0,.1)
.table tr
border-right none
border-left none
.empty
text-align center
| .dashboard
> header
text-align left
display flex
align-items center
padding 60px 0 0 0
h1
color #A0A0A0
font-weight 300
font-size 50px
flex 1
margin-bottom 0
+ .course,
+ h2
margin-top 60px
h2
font-size 30px
font-weight 300
color #A0A0A0
.button
margin-left 0
&.stacked
margin-top 10px
.empty-state
margin-top 18px
max-width 600px
font-size 19px
p
margin-bottom 8px
p.small
font-size 15px
.button
margin-top 18px
margin-bottom 18px
#user_courses
margin-bottom 60px
background #fff
border 1px solid $border_lt
box-shadow 0px 1px 2px rgba(0,0,0,.1)
.table tr
border-right none
border-left none
.empty
text-align center
| Remove custom css for icon button on dashboard | Remove custom css for icon button on dashboard
| Stylus | mit | majakomel/WikiEduDashboard,sejalkhatri/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,MusikAnimal/WikiEduDashboard,KarmaHater/WikiEduDashboard,alpha721/WikiEduDashboard,Wowu/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,Wowu/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,MusikAnimal/WikiEduDashboard,KarmaHater/WikiEduDashboard,feelfreelinux/WikiEduDashboard,majakomel/WikiEduDashboard,feelfreelinux/WikiEduDashboard,Wowu/WikiEduDashboard,MusikAnimal/WikiEduDashboard,KarmaHater/WikiEduDashboard,MusikAnimal/WikiEduDashboard,majakomel/WikiEduDashboard,sejalkhatri/WikiEduDashboard,alpha721/WikiEduDashboard,majakomel/WikiEduDashboard,alpha721/WikiEduDashboard,feelfreelinux/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,sejalkhatri/WikiEduDashboard,alpha721/WikiEduDashboard,KarmaHater/WikiEduDashboard,Wowu/WikiEduDashboard,sejalkhatri/WikiEduDashboard,feelfreelinux/WikiEduDashboard |
3a9d1008f2e70df8a3d7c7cca270c5e329d177a0 | SingularityUI/app/styles/headerActions.styl | SingularityUI/app/styles/headerActions.styl | @import colors
.subhead h1
@media (min-width: 767px)
position relative
padding-right 400px
.header-actions
font-size 0
margin 15px 0 10px
display block
@media (min-width: 767px)
position absolute
top 0
right 0
width 400px
text-align right
margin 0
a
background $linkBlue
display inline-block
padding 9px 11px
color inherit
font-size 15px
text-decoration none
color #fff
border-radius 5px
white-space nowrap
font-weight normal
margin 0 14px 0 0
@media (min-width: 767px)
margin 0 0 0 14px
&[data-action="viewObjectJSON"]
background #eee
color #888
&[data-action="remove"]
background $removeRed
color #fff | @import colors
.subhead h1
@media (min-width: 767px)
position relative
padding-right 400px
.header-actions
font-size 0
margin 15px 0 10px
display block
@media (min-width: 767px)
position absolute
top 0
right 0
width 400px
text-align right
margin 0
a
background $linkBlue
display inline-block
padding 9px 11px
color inherit
font-size 15px
text-decoration none
color #fff
border-radius 5px
white-space nowrap
font-weight normal
margin 0 14px 7px 0
@media (min-width: 767px)
margin 0 0 0 14px
&[data-action="viewObjectJSON"]
background #eee
color #888
&[data-action="remove"]
background $removeRed
color #fff | Add bottom margin to header actions | Add bottom margin to header actions | Stylus | apache-2.0 | hs-jenkins-bot/Singularity,andrhamm/Singularity,stevenschlansker/Singularity,andrhamm/Singularity,mjball/Singularity,grepsr/Singularity,evertrue/Singularity,evertrue/Singularity,stevenschlansker/Singularity,stevenschlansker/Singularity,tejasmanohar/Singularity,HubSpot/Singularity,tejasmanohar/Singularity,nvoron23/Singularity,acbellini/Singularity,tejasmanohar/Singularity,hs-jenkins-bot/Singularity,stevenschlansker/Singularity,calebTomlinson/Singularity,calebTomlinson/Singularity,tejasmanohar/Singularity,hs-jenkins-bot/Singularity,evertrue/Singularity,nvoron23/Singularity,hs-jenkins-bot/Singularity,grepsr/Singularity,nvoron23/Singularity,calebTomlinson/Singularity,calebTomlinson/Singularity,mjball/Singularity,nvoron23/Singularity,evertrue/Singularity,nvoron23/Singularity,acbellini/Singularity,grepsr/Singularity,stevenschlansker/Singularity,acbellini/Singularity,andrhamm/Singularity,tejasmanohar/Singularity,mjball/Singularity,HubSpot/Singularity,andrhamm/Singularity,andrhamm/Singularity,HubSpot/Singularity,stevenschlansker/Singularity,acbellini/Singularity,evertrue/Singularity,mjball/Singularity,hs-jenkins-bot/Singularity,evertrue/Singularity,mjball/Singularity,HubSpot/Singularity,nvoron23/Singularity,acbellini/Singularity,grepsr/Singularity,calebTomlinson/Singularity,grepsr/Singularity,HubSpot/Singularity,acbellini/Singularity,tejasmanohar/Singularity,calebTomlinson/Singularity,grepsr/Singularity |
f0600eb8d734e3b18906501ed0ab5c8bc2eaa150 | app/account/styles/_create-board.styl | app/account/styles/_create-board.styl | .create-board {
&.is-creating {
.create-board-form {
display: block;
}
.create-board-actions {
display: none;
}
}
.create-board-form {
display: none;
}
}
| .create-board {
&.is-creating {
.create-board-form {
display: block;
}
.create-board-actions {
display: none;
}
}
.create-board-form {
display: none;
}
.icon-add {
margin-right: 2px;
top: 0px;
vertical-align: bottom;
}
}
| Fix “Create board” button icon positioning. | Fix “Create board” button icon positioning. | Stylus | agpl-3.0 | GetBlimp/boards-web,jessamynsmith/boards-web,jessamynsmith/boards-web |
972d102512cd3891a7633f682abf303151af0dcb | src/styles/index.styl | src/styles/index.styl | @require 'cozy-ui/build'
@require './variables.styl'
@require './sidebar.css'
@require './todos.css'
.app-content
margin 1rem 0 2rem 2rem
.password
display flex
line-height 35px
border-bottom 1px solid cozy-grey
> div
flex 1
.password-description
color cozy-grey
.unstyled-link
text-decoration none
color inherit
.select-option
display flex
line-height 28px
> .select-icon
flex 1
text-align center
> .select-label
flex 9
.cozy-blue
color cozy-blue
div.password-modal-content
overflow visible
.home-icon
font-size 70px
nav
.c-nav-action
cursor pointer
.c-nav-action > li
.c-nav-action > li:hover
background cozy-blue
border-radius 0 .188rem .188rem 0
.c-nav-link > span, svg
color white
.c-nav-action > li:before
width 0
svg.svg-inline--fa[aria-hidden=true]
visibility visible
display block
| @require 'cozy-ui/build'
@require './variables.styl'
@require './sidebar.css'
@require './todos.css'
.app-content
margin 1rem 0 2rem 2rem
.password
display flex
line-height 35px
border-bottom 1px solid cozy-grey
> div
flex 1
.password-description
color cozy-grey
.unstyled-link
text-decoration none
color inherit
.select-option
display flex
line-height 28px
> .select-icon
flex 1
text-align center
> .select-label
flex 9
.cozy-blue
color cozy-blue
div.password-modal-content
overflow visible
.home-icon
font-size 70px
nav
.c-nav-action
cursor pointer
.c-nav-action > li
.c-nav-action > li:hover
background cozy-blue
border-radius 0 .188rem .188rem 0
.c-nav-link > span, svg
color white
.c-nav-action > li:before
width 0
[aria-hidden=true]
visibility visible
display inline-block
| Add ability to view fontawesome icons on production | Add ability to view fontawesome icons on production
| Stylus | agpl-3.0 | yeppao/cozy-passwords,yeppao/cozy-passwords |
5e928a8457663f025ceed368ce01a2e76b7c8e53 | client/stylesheets/style.styl | client/stylesheets/style.styl | body
padding-top 70px
.mangas
display inline-block
padding 0 15px 0 15px
@media (max-width: 767px)
.mangas
a
img
width 220px
height 338px
@media (min-width: 768px)
.mangas
a
img
width 226px
height 328px
@media (min-width: 992px)
.mangas
a
img
width 215px
height 316px
@media (min-width: 1200px)
.mangas
a
img
width 200px
height 307px | body
padding-top 70px
.mangas, .mangas-cover
display inline-block
padding 0 10px 0 10px
@media (max-width: 767px)
.mangas.grid-item
width 33%
.mangas-cover.grid-item
width 50%
@media (min-width: 768px)
.mangas.grid-item
width 25%
.mangas-cover.grid-item
width 33%
@media (min-width: 992px)
.mangas.grid-item
width 20%
.mangas-cover.grid-item
width 25%
@media (min-width: 1200px)
.mangas.grid-item
width 16%
.mangas-cover.grid-item
width 20%
| Add layout for the grid-item | Add layout for the grid-item
| Stylus | mit | dexterneo/mangas,dexterneo/mangatek,dexterneo/mangas,dexterneo/mangatek |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.