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
bb5c95295c194db1af2e5be2068bbe7d938a28d3
src/stylus/mixins/default.styl
src/stylus/mixins/default.styl
border-radius() -webkit-border-radius arguments -moz-border-radius arguments border-radius arguments box-shadow() -webkit-box-shadow arguments -moz-box-shadow arguments box-shadow arguments enable-flex(direction=row, wp=nowrap, justify=space-between, alignContent=flex-end, alignItems=flex-end) display flex flex-direction direction flex-wrap wp justify-content justify align-content alignContent align-items alignItems display -webkit-flex -webkit-flex-direction direction -webkit-flex-wrap wp -webkit-justify-content justify -webkit-align-content alignContent -webkit-align-items alignItems flex-content(flex-grow=1, flex-shrink=0, flex-basis=10px) flex-grow flex-grow flex-shrink flex-shrink -webkit-flex-grow flex-grow -webkit-flex-shrink flex-shrink absolute(top = 'auto', left = 'auto', right = 'auto', bottom = 'auto', height = 'auto', width = 'auto') position absolute top top left left right right bottom bottom height height width width no-select() -webkit-touch-callout none -webkit-user-select none -khtml-user-select none -moz-user-select none -ms-user-select none user-select none
border-radius() -webkit-border-radius arguments -moz-border-radius arguments border-radius arguments box-shadow() -webkit-box-shadow arguments -moz-box-shadow arguments box-shadow arguments enable-flex(direction=row, wp=nowrap, justify=space-between, alignContent=flex-end, alignItems=flex-end) display flex flex-direction direction flex-wrap wp justify-content justify align-content alignContent align-items alignItems display -webkit-flex -webkit-flex-direction direction -webkit-flex-wrap wp -webkit-justify-content justify -webkit-align-content alignContent -webkit-align-items alignItems flex-content(flex-grow=1, flex-shrink=0, flex-basis=10px) flex-grow flex-grow flex-shrink flex-shrink -webkit-flex-grow flex-grow -webkit-flex-shrink flex-shrink absolute(top = auto, left = auto, right = auto, bottom = auto) position absolute top top left left right right bottom bottom no-select() -webkit-touch-callout none -webkit-user-select none -khtml-user-select none -moz-user-select none -ms-user-select none user-select none
Fix Stylus `absolute` function - `'auto'` is an invalid value; use `auto` instead - eliminate `width` & `height` as they were never used (and aren't involved in absolute positioning)
Fix Stylus `absolute` function - `'auto'` is an invalid value; use `auto` instead - eliminate `width` & `height` as they were never used (and aren't involved in absolute positioning) Issues found while testing the checkbox label changes
Stylus
mit
concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models,concord-consortium/building-models
d92e586fa164cb99ab0e631e7d926687e6213154
static/src/styles/landing/LandingAbout.styl
static/src/styles/landing/LandingAbout.styl
.LandingAbout__section { padding: grid(4); } @media screen and (min-width: 700px) { .LandingAbout__section { display: flex; } .LandingAbout__section:nth-child(even) .LandingAbout__imageContainer { order: 10; } .LandingAbout__imageContainer, .LandingAbout__text { padding: grid(5); flex:1; } } .LandingAbout__image { width: 100%; } .LandingAbout__text { flex: 1; } .LandingAbout__headline { Text__headerScale(2); font-family: $Text__monospacedFont; text-transform: uppercase; font-weight: 900; }
.LandingAbout__section { padding: grid(4); } @media screen and (min-width: 700px) { .LandingAbout__section { display: flex; } .LandingAbout__section:nth-child(even) .LandingAbout__imageContainer { order: 10; } .LandingAbout__imageContainer, .LandingAbout__text { padding: grid(5); flex:1; } } .LandingAbout__image { width: 100%; } .LandingAbout__text { flex: 1; } .LandingAbout__headline { Text__headerScale(3); font-family: $Text__monospacedFont; font-weight: 800; color: #792359; line-height: 1.4em; }
Add pizzazz to About headers
Add pizzazz to About headers
Stylus
mit
hackersatcambridge/hac-website,hackersatcambridge/hac-website,moosichu/hac-website,moosichu/hac-website
cfc89152a163ba85f4753d160d220237f26e00b9
src/drive/web/modules/filelist/fileopener.styl
src/drive/web/modules/filelist/fileopener.styl
.file-opener display flex flex 1 1 auto align-items center width 100% .file-opener__a text-decoration none color var(--coolGrey)
@supports (display: contents) .file-opener display contents @supports not (display: contents) .file-opener display flex flex 1 1 auto align-items center width 100% .file-opener__a text-decoration none color var(--coolGrey)
Use display contents when supported. Use flex when not
fix: Use display contents when supported. Use flex when not
Stylus
agpl-3.0
nono/cozy-files-v3,nono/cozy-files-v3,cozy/cozy-files-v3,cozy/cozy-files-v3,cozy/cozy-files-v3,nono/cozy-files-v3,nono/cozy-files-v3,cozy/cozy-files-v3
4cf88e3caf43660334a7eab6ef5101a0d87e7028
stylus/ui-app/alerts.styl
stylus/ui-app/alerts.styl
/*! * NOTIFICATIONS * ============= * * This file contains all needs for alerts */ $alerts alert-width = em(546px) .coz-alerter z-index 100 .coz-overlay position absolute height 100% width 100% top 0 left 0 background white opacity .6 transition opacity ease-out .3s .coz-alert display block position absolute top em(16px) left 0 margin 0 em(16px) border-radius em(10px) background-color emerald box-shadow 0 em(6px) em(18px) 0 rgba(50, 54, 63, .23) box-sizing border-box padding 1em color white // When only a title is displayed min-height em(96px) padding-left em(96px) background embedurl('../../assets/icons/icon-check.svg') no-repeat em(24px) center transition top .5s ease-out cursor pointer .coz-alert-title font-weight bold .coz-alert--error background-color pomegranate background-image embedurl('../../assets/icons/icon-warn.svg') .coz-alert--closing top -25% transition-timing-function ease-in @media all and (min-width alert-width) .coz-alert left 50% max-width alert-width margin-left -(alert-width/2) width 100%
/*! * NOTIFICATIONS * ============= * * This file contains all needs for alerts */ $alerts alert-width = em(480px) .coz-alerter z-index 100 .coz-overlay position absolute height 100% width 100% top 0 left 0 background white opacity .6 transition opacity ease-out .3s .coz-alert display block position absolute top em(16px) left 0 margin 0 em(16px) border-radius em(10px) background-color emerald box-shadow 0 em(6px) em(18px) 0 rgba(50, 54, 63, .23) box-sizing border-box padding 1em 1.5em color white opacity 1 transition top .5s ease-out, opacity .2s ease-out cursor pointer p margin 0 line-height 1.5 .coz-alert-title font-weight bold .coz-alert--error background-color pomegranate .coz-alert--closing top -25% transition-timing-function ease-in @media all and (min-width alert-width) .coz-alert left 50% max-width alert-width margin-left -(alert-width/2) width 100%
Update alert to be compliant with Files v3 mockups
[feat] Update alert to be compliant with Files v3 mockups
Stylus
mit
kosssi/cozy-ui,GoOz/cozy-ui
c20a4f5338d449f763889a4a355dda1cf84fe6c7
src/css/tabView.styl
src/css/tabView.styl
.tab-view width $tabViewWidth overflow-y visible background #FFF bottom 50px left 20px top 140px // Value to subtract should be top position plus 20px for padding on bottom // max-height calc(100% - 80px) /* IE10+ CSS styles go here */ // @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) // max-height 75% .tab-view__content overflow-y visible position static display none height 100% .tab-view__content.selected flex-direction column display flex .tab-view__narrative margin 10px @media (max-width: $mobileBreak) .tab-view box-shadow none max-height none bottom 50px width 100% z-index 6 left 0 top 0 .tab-view__mobile-header border-bottom 1px solid $lightGray font-weight 400 font-size 2em padding 10px margin 0
.tab-view width $tabViewWidth overflow-y visible background #FFF bottom 50px left 20px top 140px // Value to subtract should be top position plus 20px for padding on bottom // max-height calc(100% - 80px) /* IE10+ CSS styles go here */ // @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) // max-height 75% .tab-view__content overflow-y visible position static display none height 100% .tab-view__content.selected flex-direction column display flex .tab-view__narrative margin 10px overflow-y auto @media (max-width: $mobileBreak) .tab-view box-shadow none max-height none bottom 50px width 100% z-index 6 left 0 top 0 .tab-view__mobile-header border-bottom 1px solid $lightGray font-weight 400 font-size 2em padding 10px margin 0
Fix issue in info panel with scroll
Fix issue in info panel with scroll
Stylus
mit
wri/gfw-mapbuilder,wri/gfw-mapbuilder,wri/gfw-mapbuilder
a9d6d86cd3bb3b5adf77d12b45f9f06b9353255c
audio-player/src/stylus/controls/SelectBox.styl
audio-player/src/stylus/controls/SelectBox.styl
@import "common/Color.styl" @import "common/Size.styl" @import "common/MixIn.styl" .selectbox { position relative height 28px background-color color_indigo_dark border solid 1px color_indigo_dark border-radius 2px &__dropdown { width size_full height size_full cursor pointer &:after { icon_style() position absolute box-sizing border-box padding-top 8px padding-left 4px right 4px height size_full content icon_chevron_down color color_white font-size 14px } &__select { unselectable() appearance_none() z-index 1 position absolute width size_full padding .3em 24px .3em .5em outline none border none background-color transparent font-family sans-serif font-size 14px color color_white cursor pointer } } }
@import "common/Color.styl" @import "common/Size.styl" @import "common/MixIn.styl" .selectbox { position relative height 28px background-color color_indigo_dark border solid 1px color_indigo_dark border-radius 2px &__dropdown { width size_full height size_full cursor pointer &:after { icon_style() position absolute box-sizing border-box padding-top 8px padding-left 4px right 4px height size_full content icon_chevron_down color color_white font-size 14px } &__select { unselectable() appearance_none() z-index 1 position absolute width size_full padding .3em 24px .3em .5em outline none border none background-color color_indigo_dark font-family sans-serif font-size 14px color color_white cursor pointer } } }
Fix a problem that does not read the text of the menu in Windows
Fix a problem that does not read the text of the menu in Windows
Stylus
mit
akabekobeko/examples-electron,akabekobeko/examples-electron,akabekobeko/examples-electron
14857582a4510ee9c4b12082c9d44b12464b7698
src/app/stories/_stories.tablet.styl
src/app/stories/_stories.tablet.styl
@media $media-width-tablet { article.story .content { // TODO get rid of .content in hero to eliminate child selector padding-top: 40px; padding-bottom: 30px; } article.story .main { > section { padding: 15px; h2 { font-size: 25px; line-height: 42px; padding-top: 0; } } .licensing { ul { display: flex; flex-flow: row wrap; } li { flex: 1 200px; margin: 20px 45px 10px 55px; } } } article.story .asides { aside { > section { padding: 15px; &:first-child { border: none; } } .account { h2 { // TODO this maybe should move back to account stylesheet position: absolute; top: 0; left: 0; right: 0; height: 45px; line-height: 45px; font-size: 18px; padding-left: 100px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; // TODO mixin if this is necessary text-overflow: ellipsis; background-color: $page-fill-color; color: $heading-color; a { color: inherit; } } } } } }
@media $media-width-tablet { article.story .content { // TODO get rid of .content in hero to eliminate child selector padding-top: 40px; padding-bottom: 30px; } article.story .main { padding-bottom: 25px; > section { padding: 15px; h2 { font-size: 25px; line-height: 42px; padding-top: 0; } } .licensing { ul { display: flex; flex-flow: row wrap; } li { flex: 1 200px; margin: 20px 45px 10px 55px; } } } article.story .asides { aside { > section { padding: 15px; &:first-child { border: none; } } .account { h2 { // TODO this maybe should move back to account stylesheet position: absolute; top: 0; left: 0; right: 0; height: 45px; line-height: 45px; font-size: 18px; padding-left: 100px; overflow: hidden; white-space: nowrap; -o-text-overflow: ellipsis; // TODO mixin if this is necessary text-overflow: ellipsis; background-color: $page-fill-color; color: $heading-color; a { color: inherit; } } } } } }
Add bottom spacing to story content
Add bottom spacing to story content
Stylus
agpl-3.0
PRX/www.prx.org,PRX/www.prx.org,PRX/www.prx.org
4cfcf1f62b8e722e9bb43244c9b644087b1136d1
src/drive/styles/main.styl
src/drive/styles/main.styl
@require 'settings/breakpoints.styl' div:focus outline: none .fil-content padding-top 1.875rem +small-screen() padding 0 &.--working // we forbid clicks when loading something to avoid concurrent data fetches and consequent flash effects pointer-events none //!TODO Remove this code after upgrading to cozy-bar@6 [aria-hidden=true] display: initial visibility: initial [role=application][aria-hidden=true] display: initial visibility: initial
@require 'settings/breakpoints.styl' div:focus outline: none .fil-content padding-top 1.875rem +small-screen() padding 0 &.--working // we forbid clicks when loading something to avoid concurrent data fetches and consequent flash effects pointer-events none //!TODO Remove this code after upgrading to cozy-bar@6 [aria-hidden=true] display: initial visibility: initial [role=application][aria-hidden=true] display: initial visibility: initial [role=toolbar] button svg display: initial visibility: initial
Add dirty fix also for action bar
fix: Add dirty fix also for action bar
Stylus
agpl-3.0
nono/cozy-files-v3,y-lohse/cozy-drive,nono/cozy-files-v3,cozy/cozy-files-v3,y-lohse/cozy-drive,y-lohse/cozy-drive,y-lohse/cozy-files-v3,cozy/cozy-files-v3,cozy/cozy-files-v3,nono/cozy-files-v3,y-lohse/cozy-drive,y-lohse/cozy-files-v3,y-lohse/cozy-files-v3,nono/cozy-files-v3,cozy/cozy-files-v3
d2c36ef80371bd3aa5e7a3f3ffc6bcc1a0b2af84
web_client/stylesheets/panels/drawWidget.styl
web_client/stylesheets/panels/drawWidget.styl
.h-elements-container width 100% max-height 300px overflow-y auto margin-top 5px padding 3px 5px .h-element span cursor pointer .h-element-label margin-left 5px .h-delete-element float right .h-element:hover background-color #eee .h-save-annotation float right .h-draw-widget .h-draw-tools .btn-group-sm>.btn padding-left 3px padding-right 7px .h-style-group-row margin 10px 0
.h-elements-container width 100% max-height 300px overflow-y auto margin-top 5px padding 3px 5px .h-element span cursor pointer .h-element-label margin-left 5px .h-delete-element float right .h-element:hover background-color #eee .h-save-annotation float right .h-draw-widget .h-draw-tools .btn-group-sm>.btn padding-left 3px padding-right 7px .h-style-group-row margin 10px 0 .btn-default.active background-color #5790ff &:focus, &:hover background-color #4672cc
Change the color of the selected drawing style.
Change the color of the selected drawing style. I couldn't see the difference between which drawing mode was selected versus which one was focused. This made it hard to tell if I had a drawing mode turned on or off. Bootstrap's .btn-default:hover is the same color as .btn-default.active, and very close to .btn-default.active:focus I picked the color that my version of Chrome uses for highlighted text. I'd be happy to use a different color, provided I can tell the difference between it and the :hover color.
Stylus
apache-2.0
DigitalSlideArchive/HistomicsTK,DigitalSlideArchive/HistomicsTK
7bb31cacafe0bc4b17f286549a1b6c3592c6c67d
src/components/grid.styl
src/components/grid.styl
/** * @Component Grid * @Package components */ @require '_variables' @import 'mixins/grids' // ROWS // ---------------------------------------------------------------------------- .row width $grid-fluid-width padding 0 $grid-gutter-left 0 $grid-gutter-right overflow hidden &.padding-{$sm} padding-top 1rem padding-bottom 1rem &.padding-{$lg} padding-top 1.2rem padding-bottom 1.2rem &:not(.flex) display block &:not(.flex) > [class*="col-"] make-column-behaviour() // COLUMNS // ---------------------------------------------------------------------------- for n in (1..$grid-column-number) .col-{n} make-column(n) // OFFSETS // ---------------------------------------------------------------------------- for n in (1..$grid-column-number-offset) .offset-{n} margin-left $grid-fluid-width * (((($grid-gutter-width + $grid-column-width) * n) + $grid-gutter-left) / $grid-fixed-width) !important // GRID MEDIA // ---------------------------------------------------------------------------- @media only screen and (max-width: $media-max-width-tablet) .row for n in (1..$grid-column-number) .col-{n} make-column($grid-column-number) for n in (1..$grid-column-number) .offset-{n} margin-left 0px !important
/** * @Component Grid * @Package components */ @require '_variables' @import 'mixins/grids' // ROWS // ---------------------------------------------------------------------------- .row width $grid-fluid-width padding 0 $grid-gutter-left 0 $grid-gutter-right overflow hidden &:not(.flex) display block &:not(.flex) > [class*="col-"] make-column-behaviour() // COLUMNS // ---------------------------------------------------------------------------- for n in (1..$grid-column-number) .col-{n} make-column(n) // OFFSETS // ---------------------------------------------------------------------------- for n in (1..$grid-column-number-offset) .offset-{n} margin-left $grid-fluid-width * (((($grid-gutter-width + $grid-column-width) * n) + $grid-gutter-left) / $grid-fixed-width) !important // GRID MEDIA // ---------------------------------------------------------------------------- @media only screen and (max-width: $media-max-width-tablet) .row for n in (1..$grid-column-number) .col-{n} make-column($grid-column-number) for n in (1..$grid-column-number) .offset-{n} margin-left 0px !important
Remove stuff that are in containers better and more reusable
Remove stuff that are in containers better and more reusable
Stylus
mit
terox/smooth
e8ab603d3c3c85dbcd485f31ced9ec47e9300f42
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 &.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
.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.8rem font-family: cursive color: #ccc margin-bottom: 20px .city-name margin-bottom: 8px font-size: 1.6rem 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
Change font size to current weather
Change font size to current weather
Stylus
mit
IvaPetkova/My-HTML-Projects
872293cd73aeb4b84c4b86e0a24304875ce69a7b
lib/norm.styl
lib/norm.styl
normalize(); [hidden] display: none !important;
normalize(); normalize-hidden-block := { display : none !important } [hidden] {normalize-hidden-block}
Normalize [hidden] override is a block.
Normalize [hidden] override is a block.
Stylus
mit
socialally/aqua,socialally/aqua
f974b678c2a8d71fa990ced9c11e172031fc967a
components/form/markdown-editor/media-items.styl
components/form/markdown-editor/media-items.styl
.form-markdown-editor-media-items @extend .well border: 1px solid $input-border border-top: 0 background-color: $input-bg .form-group margin-bottom: 0 .media-item-list white-space: nowrap .col float: none display: inline-block .media-item-list-item margin-bottom: 0
.form-markdown-editor-media-items @extend .well border: 1px solid $input-border border-top: 0 background-color: $input-bg .form-group margin-bottom: 0 .media-item-list white-space: nowrap .col float: none display: inline-block &-item display: block position: relative height: 0 padding-top: 80% background-color: $gray-darkest @media $media-xs margin-bottom: $grid-gutter-width-xs &-item-inner position: absolute top: 5px right: 5px bottom: 5px left: 5px &-item-controls position: absolute top: -5px right: 5px z-index: 1 &-item-img position: absolute top: 0 right: 0 bottom: 0 left: 0 background-repeat: no-repeat background-position: center center background-size: cover
Fix styling for media items in the markdown editor.
Fix styling for media items in the markdown editor.
Stylus
mit
gamejolt/frontend-lib,gamejolt/frontend-lib,gamejolt/frontend-lib,gamejolt/frontend-lib
e737a5953b4e04ad4cc772c7db602adb73ec7860
stylus/pages/index.styl
stylus/pages/index.styl
.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
.posts li display flex // Unset general `li` styling. left 0 padding-right 0 align-items baseline 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
Fix date alignment in posts lists
Fix date alignment in posts lists
Stylus
unlicense
valeriangalliat/blog,valeriangalliat/blog,valeriangalliat/blog
45f9f51e1f94fbdd2cee0634bfd8b39b6d850ed8
app/assets/stylesheets/training_modules/_quiz.styl
app/assets/stylesheets/training_modules/_quiz.styl
.training__slide__quiz width $slide_inner_content_width +below($desktop) width 100% margin 0 auto ul list-style none padding-left 0 margin-left 0 li margin-left 0 padding-left 0 margin-bottom 10px &.revealed padding 10px position relative right 11px &.correct background $success_bg &.incorrect background $warning_bg label cursor pointer display flex input[type=radio] margin-right 8px -webkit-appearance radio position relative top -3px button margin-top 20px .assessment__answer-explanation margin-left 23px font-size 14px &.correct color $success_text font-weight bold &.incorrect color $warning_text font-weight bold
.training__slide__quiz width $slide_inner_content_width +below($desktop) width 100% margin 0 auto ul list-style none padding-left 0 margin-left 0 li margin-left 0 padding-left 0 margin-bottom 10px &.revealed padding 10px position relative right 11px &.correct background $success_bg &.incorrect background $warning_bg label cursor pointer display flex > div margin-right 8px > span flex 1 input[type=radio] -webkit-appearance radio position relative top -3px button margin-top 20px .assessment__answer-explanation margin-left 23px font-size 14px &.correct color $success_text font-weight bold &.incorrect color $warning_text font-weight bold
Improve training radio btn alignment in safari
Improve training radio btn alignment in safari
Stylus
mit
sejalkhatri/WikiEduDashboard,sejalkhatri/WikiEduDashboard,KarmaHater/WikiEduDashboard,alpha721/WikiEduDashboard,alpha721/WikiEduDashboard,ragesoss/WikiEduDashboard,Wowu/WikiEduDashboard,KarmaHater/WikiEduDashboard,ragesoss/WikiEduDashboard,MusikAnimal/WikiEduDashboard,adamwight/WikiEduDashboard,Wowu/WikiEduDashboard,adamwight/WikiEduDashboard,sejalkhatri/WikiEduDashboard,sejalkhatri/WikiEduDashboard,Wowu/WikiEduDashboard,sejalkhatri/WikiEduDashboard,Wowu/WikiEduDashboard,MusikAnimal/WikiEduDashboard,feelfreelinux/WikiEduDashboard,MusikAnimal/WikiEduDashboard,majakomel/WikiEduDashboard,majakomel/WikiEduDashboard,feelfreelinux/WikiEduDashboard,alpha721/WikiEduDashboard,alpha721/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,feelfreelinux/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,adamwight/WikiEduDashboard,MusikAnimal/WikiEduDashboard,majakomel/WikiEduDashboard,feelfreelinux/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,ragesoss/WikiEduDashboard
043635dd1b6a27d43295cb354006c3d8fa569a27
src/app/components/post/add-button/add-button.styl
src/app/components/post/add-button/add-button.styl
@require '~styles/variables' @require '~styles-lib/mixins' $-height = 40px .post-add-button display: flex align-items: center .-avatar change-bg('bg-subtle') img-circle() flex: none width: $-height height: $-height margin-right: $grid-gutter-width-xs * 0.5 @media $media-sm-up margin-right: $grid-gutter-width * 0.5 .-input input-placeholder-button() flex: auto position: relative height: $-height line-height: $-height user-select: none -moz-user-select: none transition: border-color 200ms $strong-ease-out &::before transition: border-color 200ms $strong-ease-out caret(var(--theme-bg-subtle), size: 9px) content: '' &:hover border-color: var(--theme-link) &::before caret(var(--theme-link), size: 9px)
@require '~styles/variables' @require '~styles-lib/mixins' $-height = 40px .post-add-button display: flex align-items: center .-avatar change-bg('bg-subtle') img-circle() flex: none width: $-height height: $-height margin-right: $grid-gutter-width-xs * 0.5 @media $media-sm-up margin-right: $grid-gutter-width * 0.5 .-input input-placeholder-button() flex: auto position: relative height: $-height line-height: $-height user-select: none -moz-user-select: none transition: border-color 200ms $strong-ease-out overflow: hidden text-overflow: ellipsis white-space: nowrap &::before transition: border-color 200ms $strong-ease-out caret(var(--theme-bg-subtle), size: 9px) content: '' &:hover border-color: var(--theme-link) &::before caret(var(--theme-link), size: 9px)
Fix long placeholders on mobile for community post add
Fix long placeholders on mobile for community post add
Stylus
mit
gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt
8be89ec0f1f9b8ade6b1505ddef9fddef43dbe40
client/Social/Activity/styl/activity.responsive.styl
client/Social/Activity/styl/activity.responsive.styl
@import "../../../Framework/src/themes/default/kdfn" @import "../../../Main/styl/appfn" @css { /* Activity mediaqueries stylesheet resurrection.activity.styl */ } @media only screen and (min-width: 0px) and (max-width: 1024px) .content-page.activity > main margin 0 auto float none .content-page.activity > aside hidden()
@import "../../../Framework/src/themes/default/kdfn" @import "../../../Main/styl/appfn" @css { /* Activity mediaqueries stylesheet resurrection.activity.styl */ } @media only screen and (min-width: 0px) and (max-width: 1024px) .content-page.activity > main margin 0 auto float none .content-page.activity > aside hidden() .account-area > .avatar-area width 116px h2, h3 hidden() #dock width calc( 100% \- 312px )
Hide the Profile name from account menu for resolutions lower then 1024px
Activity:styl: Hide the Profile name from account menu for resolutions lower then 1024px
Stylus
agpl-3.0
sinan/koding,mertaytore/koding,kwagdy/koding-1,usirin/koding,kwagdy/koding-1,szkl/koding,usirin/koding,kwagdy/koding-1,usirin/koding,jack89129/koding,jack89129/koding,koding/koding,szkl/koding,rjeczalik/koding,andrewjcasal/koding,alex-ionochkin/koding,usirin/koding,mertaytore/koding,sinan/koding,gokmen/koding,andrewjcasal/koding,jack89129/koding,mertaytore/koding,cihangir/koding,sinan/koding,kwagdy/koding-1,koding/koding,alex-ionochkin/koding,rjeczalik/koding,sinan/koding,rjeczalik/koding,gokmen/koding,sinan/koding,rjeczalik/koding,sinan/koding,cihangir/koding,koding/koding,kwagdy/koding-1,cihangir/koding,jack89129/koding,szkl/koding,koding/koding,kwagdy/koding-1,acbodine/koding,alex-ionochkin/koding,mertaytore/koding,andrewjcasal/koding,alex-ionochkin/koding,koding/koding,mertaytore/koding,acbodine/koding,rjeczalik/koding,gokmen/koding,cihangir/koding,andrewjcasal/koding,alex-ionochkin/koding,cihangir/koding,acbodine/koding,sinan/koding,jack89129/koding,drewsetski/koding,szkl/koding,drewsetski/koding,acbodine/koding,rjeczalik/koding,gokmen/koding,jack89129/koding,acbodine/koding,kwagdy/koding-1,szkl/koding,gokmen/koding,drewsetski/koding,drewsetski/koding,cihangir/koding,szkl/koding,kwagdy/koding-1,usirin/koding,acbodine/koding,drewsetski/koding,andrewjcasal/koding,alex-ionochkin/koding,sinan/koding,cihangir/koding,andrewjcasal/koding,alex-ionochkin/koding,gokmen/koding,koding/koding,usirin/koding,gokmen/koding,jack89129/koding,acbodine/koding,szkl/koding,szkl/koding,andrewjcasal/koding,gokmen/koding,cihangir/koding,alex-ionochkin/koding,drewsetski/koding,drewsetski/koding,acbodine/koding,koding/koding,rjeczalik/koding,mertaytore/koding,koding/koding,mertaytore/koding,andrewjcasal/koding,usirin/koding,mertaytore/koding,jack89129/koding,drewsetski/koding,rjeczalik/koding,usirin/koding
ebedde5912bb7ae51a9e250cc9419bdb57531e49
apps/home/stylesheets/index.styl
apps/home/stylesheets/index.styl
.Home img max-width 100% vertical-align bottom @require './example' @require './explore' @require './hero' @require './more' @require './quotes' @require './next' @require './section' @require './split' @require './to_fold' @require './responsive'
.Home img max-width 100% vertical-align bottom @require './explore' @require './hero' @require './more' @require './quotes' @require './section' @require './split' @require './to_fold' @require './responsive'
Remove references to old styles
Remove references to old styles
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
d79fb2e3c7f3fb7b812c31c429c784b596ff0cab
distributionviewer/core/static/css/chart-menu.styl
distributionviewer/core/static/css/chart-menu.styl
@import 'lib'; .chart-menu { display: none; font-weight: 100; height: 100%; // Offset total padding-left so the links are flush against the left window edge. margin-left: - ($min-padding + $med-padding); padding: $lrg-padding $med-padding $med-padding 0; width: $menu-width; ul { list-style: none; margin: $min-padding 0 0; padding: 0; } a { color: $normal-text; font-size: 12px; text-decoration: none; line-height: 2.5; display: block; border-radius: 0 4px 4px 0; padding: 0 $min-padding 0 0; text-align: right; &:hover { background-image: linear-gradient(90deg, #001021 0%, #00224A 100%); } } } @media $base-tablet { .chart-menu { display: block; } }
@import 'lib'; .chart-menu { display: none; font-weight: 100; height: 100%; // Offset total padding-left so the links are flush against the left window edge. margin-left: - ($min-padding + $med-padding); padding: $lrg-padding $med-padding $med-padding 0; width: $menu-width; ul { list-style: none; margin: $min-padding 0 0; padding: 0; } a { color: $normal-text; font-size: 12px; text-decoration: none; line-height: 1.5; display: block; border-radius: 0 4px 4px 0; padding: 0 $min-padding 0 0; text-align: right; margin-bottom: 15px; &:hover { background-image: linear-gradient(90deg, #001021 0%, #00224A 100%); } } } @media $base-tablet { .chart-menu { display: block; } }
Improve spacing of multi-line titles in sidebar
Improve spacing of multi-line titles in sidebar
Stylus
mpl-2.0
openjck/distribution-viewer,openjck/distribution-viewer,openjck/distribution-viewer,openjck/distribution-viewer
41203a2e8f4aed0aa07db8866ffcf42212110ab3
client/common/blocks/unread_dialogs/unread_dialogs.styl
client/common/blocks/unread_dialogs/unread_dialogs.styl
@import "nodeca.core/client/common/_variables" // // Indicator shown on the avatar in navbar // .navbar__m-unread-dialogs .navbar-auth__avatar-container .navbar-toggler // menu on mobile position relative &:after // .navbar-toggler:before is already busy position absolute width 9px height 9px border-radius 5px top -4px left -4px background-color $brand-success content ' ' box-shadow 0px 0px 1px 0 #808080 // // Indicator shown near "dialogs" link in dropdown dialog // .navbar__m-unread-dialogs .navbar-auth__dropdown-dialogs:before width 6px height 6px border-radius 3px background-color $brand-success content ' ' position relative left -6px margin-left -6px bottom 2px display inline-block
@import "nodeca.core/client/common/_variables" // // Indicator shown on the avatar in navbar // .navbar__m-unread-dialogs .navbar-auth__avatar-container .navbar-toggler // menu on mobile position relative &:after // .navbar-toggler:before is already busy position absolute width 9px height 9px border-radius 5px top -4px left -4px background-color $brand-success content ' ' box-shadow 0px 0px 1px 0 #808080 // // Indicator shown near "dialogs" link in dropdown dialog // .navbar__m-unread-dialogs .navbar-auth__dropdown-dialogs:after width 6px height 6px border-radius 3px background-color $brand-success content ' ' position relative right -12px margin-left -6px bottom 2px display inline-block
Move unread dialogs marker to the right side
Move unread dialogs marker to the right side
Stylus
mit
nodeca/nodeca.users
6d547efec3af7e7ad119fd3a4804c3e4fe5a4dc6
lib/kouto-swiss/reset.styl
lib/kouto-swiss/reset.styl
reset-box-sizing() * *:before *:after box-sizing border-box
reset-box-sizing() * *:before *:after box-sizing border-box reset-meyer() html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video margin 0 padding 0 border 0 font-size 100% font inherit vertical-align baseline article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section display block body line-height 1 ol, ul list-style none blockquote, q quotes none blockquote:before, blockquote:after, q:before, q:after content '' content none table border-collapse collapse border-spacing 0
Add Eric Meyer's CSS Reset
Add Eric Meyer's CSS Reset
Stylus
mit
krkn/kouto-swiss,girassolbit/kouto-swiss,leny/kouto-swiss,krkn/kouto-swiss,greyhwndz/kouto-swiss,greyhwndz/kouto-swiss,girassolbit/kouto-swiss,leny/kouto-swiss
b60b4a0b3dfa80a8f9118148ff99638c622aa76e
web_external/stylesheets/widgets/featureInfoWidget.styl
web_external/stylesheets/widgets/featureInfoWidget.styl
@import './infoTableMixin.styl' .m-feature-info-popup max-height 85vh overflow-y auto .m-layer:not(:first-child) margin-top 20px .m-feature-info-table info-table()
@import './infoTableMixin.styl' #m-feature-info-dialog padding-right 5px .m-feature-info-popup max-height 85vh padding-right 10px overflow-y auto .m-layer:not(:first-child) margin-top 20px .m-feature-info-table info-table()
Apply aesthetic improvement by putting padding on the inside of potential scrollbar instead of outside
Apply aesthetic improvement by putting padding on the inside of potential scrollbar instead of outside
Stylus
apache-2.0
Kitware/minerva,Kitware/minerva,Kitware/minerva
a0d55d17471a1e4f150740cdce880b4c8e4bf9da
src/css/core/index.styl
src/css/core/index.styl
//////////////////// cmui //////////////////// /* --------------------------------------------- */ /** use nib for vendor prefix **/ @import 'nib' /* --------------------------------------------- */ /** unify browser style **/ @import '../vendor/normalize' @import '../vendor/zero' /* --------------------------------------------- */ /** cmui helper **/ @import '../helper/config' @import '../helper/selector' @import '../helper/class' /* --------------------------------------------- */ /** modules **/ @import './var' @import './common' @import './text' @import './icon' @import './btn' @import './layout' @import './overlay' @import './list'
//////////////////// cmui //////////////////// /* --------------------------------------------- */ /** unify browser style **/ @import '../vendor/normalize' @import '../vendor/zero' /* --------------------------------------------- */ /** cmui helper **/ @import '../helper/config' @import '../helper/selector' @import '../helper/class' /* --------------------------------------------- */ /** modules **/ @import './var' @import './common' @import './text' @import './icon' @import './btn' @import './layout' @import './overlay' @import './list'
Remove manual importing of `nib`.
Remove manual importing of `nib`.
Stylus
mit
CMUI/CMUI,CMUI/CMUI,cssmagic/CMUI,cssmagic/CMUI
c5ded91cdafa49a5d4ef51330e6236e5cd5861f8
static/src/styles/landing/LandingAbout.styl
static/src/styles/landing/LandingAbout.styl
.LandingAbout__section { padding: grid(4); } @media screen and (min-width: 700px) { .LandingAbout__section { display: flex; } .LandingAbout__section:nth-child(even) .LandingAbout__imageContainer { order: 10; } .LandingAbout__imageContainer, .LandingAbout__text { padding: grid(5); flex:1; } } .LandingAbout__image { width: 100%; } .LandingAbout__text { flex: 1; } .LandingAbout__headline { Text__headerScale(2); font-family: $Text__monospacedFont; text-transform: uppercase; font-weight: 900; }
.LandingAbout__section { padding: grid(4); } @media screen and (min-width: 700px) { .LandingAbout__section { display: flex; } .LandingAbout__section:nth-child(even) .LandingAbout__imageContainer { order: 10; } .LandingAbout__imageContainer, .LandingAbout__text { padding: grid(5); flex:1; } } .LandingAbout__image { width: 100%; } .LandingAbout__text { flex: 1; } .LandingAbout__headline { Text__headerScale(2); font-family: $Text__monospacedFont; text-transform: uppercase; font-weight: 900; }
Fix weird margin misalignment of images and text
Fix weird margin misalignment of images and text
Stylus
mit
hackersatcambridge/hac-website,hackersatcambridge/hac-website,doctorn/hac-website,doctorn/hac-website,moosichu/hac-website,moosichu/hac-website
07465c7cb7175fe5cc279d0c6f745654c31824d3
source/stylesheets/utilities/hidden.styl
source/stylesheets/utilities/hidden.styl
@require 'includes/variables' .js-yes .js-hidden { display: none; }
@require 'includes/variables' .js-yes:not(.js-siteno) .js-hidden { display: none; }
Fix display bug in sites without site js
Fix display bug in sites without site js
Stylus
mpl-2.0
hoosteeno/viewsourceconf,hoosteeno/viewsourceconf,mdn/viewsourceconf,mdn/viewsourceconf,mdn/viewsourceconf,hoosteeno/viewsourceconf
87d83808800c8aa7a1ed578e6ea41e5e82b35499
assets/css/application.styl
assets/css/application.styl
@import '_settings' normalize() base() // http://jsbin.com/acide4/8 // http://snook.ca/archives/html_and_css/font-size-with-rem html font-size: 62.5% #rainbow transition(background-color 0.5s ease-in-out) background-color: back-color &, a color: fore-color #answer, #timer, #credits text-align: center #answer font-size: 15rem #timer font-size: 7.5rem // .answer-no & // .answer-yes & #credits font-size: 2rem padding: 0.5rem 0 width: 100% @media (min-height: 40ex) bottom: 0 position: fixed a display: inline-block border-bottom: 1px dotted #FFFFFF text-decoration: none
@import '_settings' normalize() base() // http://jsbin.com/acide4/8 // http://snook.ca/archives/html_and_css/font-size-with-rem html font-size: 62.5% #rainbow transition(background-color 0.5s ease-in-out) background-color: back-color &, a color: fore-color #answer, #timer, #credits text-align: center #answer font-size: 15rem #timer font-size: 7.5rem // .answer-no & // .answer-yes & #credits font-size: 2rem padding: 0.5rem 0 width: 100% @media (min-height: 40ex) bottom: 0 position: fixed a display: inline-block border-bottom: 1px dotted fore-color text-decoration: none
Use variables for common stylesheet values
Use variables for common stylesheet values
Stylus
mit
ravinggenius/weekend,ravinggenius/weekend
d2238e2d925c4b3dae9cb427bc146f264d6f5dfb
client/styles/narcissa.styl
client/styles/narcissa.styl
body margin-top: 40px margin-bottom: 40px ul margin: 0 padding: 0 li list-style-type: none a color: inherit .map-container border-radius: 6px position: relative .map height: 300px width: 100% .map-overlay background: rgba(255, 255, 255, 0.9) border-radius: 6px box-shadow: 0 0 8px rgba(0, 0, 0, 0.2) position: absolute top: -10px right: -10px padding-top: 10px padding-bottom: 10px padding-left: 16px padding-right: 16px text-align: right h1, p margin-top: 0 margin-bottom: 0 .narcissa-intro font-family: 'omnes-pro' .narcissa-ui font-family: 'courier-prime' h1, h2, h3, h4, h5, h6 font-family: 'tangerine' .left-col text-align: right
body margin-top: 40px margin-bottom: 40px ul margin: 0 padding: 0 li list-style-type: none a color: inherit .narcissa-intro font-family: 'omnes-pro' .narcissa-ui font-family: 'courier-prime' h1, h2, h3, h4, h5, h6 font-family: 'tangerine' .narcissa-item margin-bottom: 20px .map-container border-radius: 6px position: relative .map height: 300px width: 100% .map-overlay background: rgba(255, 255, 255, 0.9) border-radius: 6px box-shadow: 0 0 8px rgba(0, 0, 0, 0.2) position: absolute bottom: -10px right: -10px padding-top: 10px padding-bottom: 10px padding-left: 16px padding-right: 16px text-align: right h1, p margin-top: 0 margin-bottom: 0 .leaflet-control-attribution display: none .left-col text-align: right
Move map legend to lower right and add margin
Move map legend to lower right and add margin
Stylus
mit
mplewis/narcissa
5b8341903a1540dd39419d0f18bd29259e2bbaed
textfield/styles/index.styl
textfield/styles/index.styl
.mdl-textfield >textarea overflow hidden resize none .mdl-textfield--floating-label.is-invalid .mdl-textfield__label color mdl-error .mdl-textfield__error display block &__helper position absolute display block color rgba(97,97,97,0.9) font-size 12px margin-top 3px :invalid box-shadow none textarea vertical-align top &.disabled .mdl-textfield__label:after display none .mdl-textfield__input color mdl-light-full
.dmd-textfield &---textarea vertical-align top overflow hidden resize none &--resizable resize vertical &.is-invalid .mdl-textfield__label color rgb(222, 50, 38) &---error display block &---helper position absolute display block color rgba(97,97,97,0.9) font-size 12px margin-top 3px :invalid box-shadow none &--disabled .mdl-textfield__label:after display none .mdl-textfield__input color rgba(0,0,0,0.26)
Refactor styles that arent mdl overwrites + made it possible to resize textarea
Refactor styles that arent mdl overwrites + made it possible to resize textarea
Stylus
mit
BBWeb/d-md-components,BBWeb/d-md-components
64182ff71051d34d202c434987c199aad4d201b8
client/css/_sidebar.styl
client/css/_sidebar.styl
/* Search sidebar ================= */ .sidebar-search position relative margin-top 75px padding 10px border-left 1px solid #dee7e9 padding-bottom 30px min-height 600px top 0 bottom 0 h3 font-weight 300 margin-top 0 span.filter margin-bottom 20px display block label display block margin-bottom 10px font-size 0.9em font-weight 300 select width 241px input display block width 227px padding 5px font-size 13px border 1px solid #aaa input:focus border 1px solid #a1b3c2 .label-slider display inline-block float left width 120px input#score, input#publication-date border 0 float right width 100px display block padding-top 1px text-align right #score-range, #date-range display block margin 20px 10px width 230px @media screen and (max-width: 1140px) .sidebar-search position relative
/* Search sidebar ================= */ .sidebar-search position relative margin-top 75px padding 10px border-left 1px solid #dee7e9 padding-bottom 30px min-height 640px top 0 bottom 0 h3 font-weight 300 margin-top 0 span.filter margin-bottom 20px display block label display block margin-bottom 10px font-size 0.9em font-weight 300 select width 241px input display block width 227px padding 5px font-size 13px border 1px solid #aaa input:focus border 1px solid #a1b3c2 .label-slider display inline-block float left width 120px input#score, input#publication-date border 0 float right width 100px display block padding-top 1px text-align right #score-range, #date-range display block margin 20px 10px width 230px @media screen and (max-width: 1140px) .sidebar-search position relative
Fix search sidebar min-height to avoid scrollbar
Fix search sidebar min-height to avoid scrollbar
Stylus
agpl-3.0
peerlibrary/peerlibrary,peerlibrary/peerlibrary,peerlibrary/peerlibrary
3e4b66cfcd23c9995f462ca1eb0fd1166271740c
Packages/viewerbase/client/components/viewer/loadingIndicator/loadingIndicator.styl
Packages/viewerbase/client/components/viewer/loadingIndicator/loadingIndicator.styl
@import "{design}/app.styl" .imageViewerLoadingIndicator display: none color: $textPrimaryColor .faded opacity: 0.5 .imageViewerErrorLoadingIndicator display: none background-color: rgba(0,0,0,0.75) p, h4 text-align: center color: $textColorActive padding: 4px 0 p font-size: 11pt .loadingIndicator pointer-events: none // Necessary for click-through to cornerstone element below width: 100% height: 100% font-size: 18px z-index: 100 .indicatorContents position: absolute top: 40% width: 100% color: $textSecondaryColor font-size: 30px font-weight: 200 text-align: center
@import "{design}/app.styl" .imageViewerLoadingIndicator color: $textSecondaryColor .faded opacity: 0.5 .imageViewerErrorLoadingIndicator color: $uiYellow p, h4 text-align: center padding: 4px 0 p font-size: 11pt .loadingIndicator display: none pointer-events: none // Necessary for click-through to cornerstone element below position: absolute top: 0 width: 100% height: 100% font-size: 18px z-index: 100 background-color: rgba(0,0,0,0.75) .indicatorContents position: absolute top: 40% width: 100% font-size: 30px font-weight: 200 text-align: center
Fix loading / error indicator styling
Fix loading / error indicator styling
Stylus
mit
OHIF/Viewers,HorizonPlatform/Viewers,OHIF/Viewers,HorizonPlatform/Viewers,HorizonPlatform/Viewers,HorizonPlatform/Viewers,OHIF/Viewers
220327621dbf4224df08faf60daf0c2d61b776ca
app/assets/stylesheets/modules/_overview.styl
app/assets/stylesheets/modules/_overview.styl
.overview .primary +above(desktop) col(0.674, gutter: 1.8) .sidebar input margin-top 5px width 100% +above(desktop) col(1/3) .section-header display flex margin-bottom 8px .controls position relative flex 1 0 auto .milestones .module__data & > p color bayoux margin-bottom 8px hr margin 16px 0 8px 0 &.completed opacity 0.5 .markdown color body-color .section-header:last-child margin-bottom 0 hr display none
.overview .primary +above(desktop) col(0.674, gutter: 1.8) .sidebar input width 100% +above(desktop) col(1/3) .section-header display flex margin-bottom 8px .controls position relative flex 1 0 auto .milestones .module__data & > p color bayoux margin-bottom 8px hr margin 16px 0 8px 0 &.completed opacity 0.5 .markdown color body-color .section-header:last-child margin-bottom 0 hr display none
Remove extra margin from label
Remove extra margin from label
Stylus
mit
alpha721/WikiEduDashboard,MusikAnimal/WikiEduDashboard,Wowu/WikiEduDashboard,Wowu/WikiEduDashboard,sejalkhatri/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,Wowu/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,feelfreelinux/WikiEduDashboard,feelfreelinux/WikiEduDashboard,MusikAnimal/WikiEduDashboard,KarmaHater/WikiEduDashboard,MusikAnimal/WikiEduDashboard,sejalkhatri/WikiEduDashboard,majakomel/WikiEduDashboard,KarmaHater/WikiEduDashboard,sejalkhatri/WikiEduDashboard,majakomel/WikiEduDashboard,alpha721/WikiEduDashboard,KarmaHater/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,majakomel/WikiEduDashboard,KarmaHater/WikiEduDashboard,Wowu/WikiEduDashboard,alpha721/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,alpha721/WikiEduDashboard,MusikAnimal/WikiEduDashboard
90b6da145298c6267ac945d992696ff97573e778
css/classify.styl
css/classify.styl
.classify-content display: flex .project-classify-page display: flex flex: 1 > .subject flex: 4 > .classifier-task display: flex flex: 1 flex-direction: column padding-left: 1vw .task-viewer flex: 1 0 auto .task-nav border-top: 1px solid display: flex flex: 0 0 auto margin-top: 1em button @extends $reset-button flex: 1 0 auto letter-spacing: 0.05em padding: 0.5em 1em text-transform: uppercase &:not(:first-child) border-left: 1px solid &:disabled opacity: 0.4 &.backward flex-grow: 0 .subject-viewer text-align center .subject-container color: gray .subject-image max-height: 95vh .subject-viewer-svg outline: 1px dashed rgba(yellow, 0.5) &[data-tool] cursor: crosshair @require "./task-viewer" @require "./drawing-tool"
.classify-content display: flex .project-classify-page display: flex flex: 1 > .subject flex: 4 > .classifier-task display: flex flex: 1 flex-direction: column padding-left: 1vw .task-viewer flex: 1 0 auto .task-nav border-top: 1px solid display: flex flex: 0 0 auto margin-top: 1em button @extends $reset-button flex: 1 0 auto letter-spacing: 0.05em padding: 0.5em 1em text-transform: uppercase &:not(:first-child) border-left: 1px solid &:disabled opacity: 0.4 &.backward flex-grow: 0 .subject-viewer text-align center .subject-container color: gray .subject-image max-height: 95vh max-width: 100% .subject-viewer-svg outline: 1px dashed rgba(yellow, 0.5) &[data-tool] cursor: crosshair @require "./task-viewer" @require "./drawing-tool"
Make sure subject image shrinks
Make sure subject image shrinks
Stylus
apache-2.0
amyrebecca/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,parrish/Panoptes-Front-End,alexbfree/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,edpaget/Panoptes-Front-End,edpaget/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,camallen/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,parrish/Panoptes-Front-End,aliburchard/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,tfmorris/Panoptes-Front-End,marten/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,marten/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,alexbfree/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,tfmorris/Panoptes-Front-End,parrish/Panoptes-Front-End,aliburchard/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,zooniverse/Panoptes-Front-End,camallen/Panoptes-Front-End,camallen/Panoptes-Front-End,edpaget/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,alexbfree/Panoptes-Front-End
e566bbc43323bd06d95274b4a4ee0c846348affe
styl/forms.styl
styl/forms.styl
.form-group // global rules button, input, optgroup, select, textarea font inherit letter-spacing .01rem &:focus outline: 0 // all inputs that are within a standard box input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week] border 1px solid #aaaaaa border-radius 1px padding .75rem 1rem // button button, input[type=button], input[type=submit], input[type=reset] padding .75rem 1rem border-radius 1px border solid 1px transparent background-color $base-color color #eee transition background-color .25s ease-out &:hover background-color $base-color-dark cursor pointer // checkbox // color // date // datetime // datetime-local // email // file // hidden // image // month // number // password // radio // range // reset // search // submit // tel // text // time // url // week
.form-group // global rules button, input, optgroup, select, textarea font inherit letter-spacing .01rem &:focus outline: 0 // all inputs that are within a standard box input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week] border 1px solid #aaaaaa border-radius 1px padding .75rem 1rem box-shadow inset 0 1px darken(#fff, 20%) transition border-color .25s ease-out, box-shadow .5s ease-out &:focus border 1px solid #111 box-shadow 0 0 5px darken(#fff, 30%) // button button, input[type=button], input[type=submit], input[type=reset] padding .75rem 1rem border-radius 1px border solid 1px transparent background-color $base-color color #eee transition background-color .25s ease-out &:hover background-color $base-color-dark cursor pointer // checkbox // color // date // datetime // datetime-local // email // file // hidden // image // month // number // password // radio // range // reset // search // submit // tel // text // time // url // week
Add shadows and transitions to inputs
Add shadows and transitions to inputs
Stylus
mit
RyenNelsen/baremetal
817d5b3ca90299589a39e00427c856bbdf90825f
src/stylus/layout.styl
src/stylus/layout.styl
#content, .wrapper min-height 100% height 100% .container width 100% max-width 1200px margin 0 auto .header height 2em padding-top 3em padding-bottom 1em text-align center .brand font-size 1.4em text-decoration none display block .offline color gray font-size 0.6em margin-left 1em text-transform uppercase .navigation display block margin-top 0.4em .content min-height 100% margin-bottom -8em &:after content "" display block height 8em .footer padding-bottom 1.6em height 8em .icon-links font-size 2em text-align center padding-bottom 1em a margin 0.4em @media screen and (min-width: 600px) .header text-align left .brand width 45% display inline-block margin-left 1em text-align left .navigation width 45% display inline-block margin-top -0.6em margin-right 1em text-align right float right @media screen and (min-width: 1200px) .header .brand margin-left 0em .navigation margin-right 0em
#content, .wrapper min-height 100% height 100% .container width 100% max-width 1200px margin 0 auto .header min-height 2em padding-top 3em padding-bottom 1em text-align center .brand font-size 1.4em text-decoration none display block .offline color gray font-size 0.6em margin-left 1em text-transform uppercase .navigation display block margin-top 0.4em .content min-height 100% margin-bottom -8em &:after content "" display block height 8em .footer padding-bottom 1.6em height 8em .icon-links font-size 2em text-align center padding-bottom 1em a margin 0.4em @media screen and (min-width: 600px) .header text-align left .brand width 45% display inline-block margin-left 1em text-align left .navigation width 45% display inline-block margin-top -0.6em margin-right 1em text-align right float right @media screen and (min-width: 1200px) .header .brand margin-left 0em .navigation margin-right 0em
Fix height of navigation on smaller screens
Fix height of navigation on smaller screens
Stylus
mit
frigg/frigg-hq-frontend,frigg/frigg-hq-frontend
3c026c57c807b6b92d75d686ee6e7deba7e7b1d0
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% vertical-align bottom border 1px solid colors-gray-border margin 2em auto iframe box-shadow 4px 4px 4px colors-gray-background h2 margin-top 4em hr border 1px solid colors-gray-border margin 3em 2em
.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% vertical-align bottom border 1px solid colors-gray-border margin 2em auto iframe box-shadow 4px 4px 4px colors-gray-background height 2150px !important padding 1px +below(400px) height 2000px !important +below(380px) height 1950px !important +below(340px) height 1700px !important h2 margin-top 4em hr border 1px solid colors-gray-border margin 3em 2em
Fix safari border bug and get responsive sizes for iframe
Fix safari border bug and get responsive sizes for iframe
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
c5b366179846a97fe254dcc7bb94ad07b617abd6
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% vertical-align bottom border 1px solid colors-gray-border margin 2em auto iframe box-shadow 4px 4px 4px colors-gray-background height 2150px !important padding 1px +below(400px) height 2000px !important +below(380px) height 1950px !important +below(340px) height 1700px !important h2 collapsed-margins(4em) hr height 2px background-color colors-gray-border border none
.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, > strong a text-decoration underline img iframe display block max-width 100% vertical-align bottom border 1px solid colors-gray-border margin 2em auto iframe box-shadow 4px 4px 4px colors-gray-background height 2150px !important padding 1px +below(400px) height 2000px !important +below(380px) height 1950px !important +below(340px) height 1700px !important h2 collapsed-margins(4em) hr height 2px background-color colors-gray-border border none
Make sure links get underlined in bolded text on the blog
Make sure links get underlined in bolded text on the blog
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
64c93900ca77b7bbb3d63a41bd73cca2f4de4306
stylus/base/util.styl
stylus/base/util.styl
/* * kernel.css utility classes. */ .ion-anchor { color: util.anchor-color; text-decoration: none; } .ion-circle { border-radius: 50%; } .ion-hr { background-color: util.hr-bg; border: 0; border-radius: 50px; height: 1px; margin-bottom: 25px; margin-top: 25px; } .ion-section { margin: $main-padding 0; } .ion-noshadow { box-shadow: none; text-shadow: none; } .ion-center { margin: auto; } .ion-vertical-center { position: relative; text-align: center; transform: translateY(-50%); top: 50%; } .ion-fixed-top { position: fixed; top: 0; } .ion-fixed-bottom { position: fixed; bottom: 0; } .ion-ul, .ion-ol { line-height: 1.8; } .ion-autowrap { overflow-wrap: break-word; }
/* * kernel.css utility classes. */ .ion-anchor { color: util.anchor-color; text-decoration: none; overflow-wrap: break-word; } .ion-circle { border-radius: 50%; } .ion-hr { background-color: util.hr-bg; border: 0; border-radius: 50px; height: 1px; margin-bottom: 25px; margin-top: 25px; } .ion-section { margin: $main-padding 0; } .ion-noshadow { box-shadow: none; text-shadow: none; } .ion-center { margin: auto; } .ion-vertical-center { position: relative; text-align: center; transform: translateY(-50%); top: 50%; } .ion-fixed-top { position: fixed; top: 0; } .ion-fixed-bottom { position: fixed; bottom: 0; } .ion-ul, .ion-ol { line-height: 1.8; } .ion-autowrap { overflow-wrap: break-word; }
Fix ion-anchors not wrapping on overflow
Fix ion-anchors not wrapping on overflow
Stylus
mit
Ionogy/kernel.css,Ionogy/kernel.css
2fdd4a4004eb6e8a9f2a99fcb7d7a660a6ad71e3
client/stylus/pages/resume.styl
client/stylus/pages/resume.styl
@import '../global' @import '../reset' @import '../page' iframe width 100% height 100%
@import '../global' @import '../reset' @import '../page' iframe width 100% height 100% .pageContent overflow hidden
Add overflow hidden to make dinner page better
Add overflow hidden to make dinner page better
Stylus
mit
grant/grant.cm,grant/grant.cm,grant/grant.cm
645a67579250ac2889371d1473e096efa3c37469
src/styles/common/overwrite.styl
src/styles/common/overwrite.styl
@import './common/variables.styl' .react-codemirror2, .CodeMirror height: 100% !important line-height: 1.2 .new-snippet .react-codemirror2, .new-snippet .CodeMirror color: text-dark !important .CodeMirror-gutter &.CodeMirror-linenumbers width: 39px .CodeMirror-sizer margin-left: 39px padding-top: 5px .CodeMirror-gutters border-right: none .snippet .CodeMirror-line padding-left: 20px !important .snippet .CodeMirror-cursor { display: none !important }
@import './common/variables.styl' .react-codemirror2, .CodeMirror height: 100% !important line-height: 1.4 .new-snippet .react-codemirror2, .new-snippet .CodeMirror color: text-dark !important .CodeMirror-gutter &.CodeMirror-linenumbers width: 39px .CodeMirror-sizer margin-left: 39px padding-top: 5px .CodeMirror-gutters border-right: none .snippet .CodeMirror-line padding-left: 20px !important .snippet .CodeMirror-cursor { display: none !important }
Change line-height for all codemirror areas
Change line-height for all codemirror areas To improve UX we decided to increase lineheight value from 1.2 to 1.4 so the code lines wouldn't look squeezed.
Stylus
mit
xsnippet/xsnippet-web,xsnippet/xsnippet-web
e9e5767f9398ce00a2966393652816b10c8e707f
app/assets/app.styl
app/assets/app.styl
// libs @require 'nib' @require 'normalize.styl' // global @import 'stylus/vars' @import 'stylus/mixins' @import 'stylus/styles' // templates @import 'stylus/common/*' @import 'directive/*' @import 'site/*' @import 'party/*' @import 'volume/*' @import 'slot/*' @import 'asset/*' // shame @import 'stylus/shame'
// libs @require 'nib' @require 'normalize.styl' // global @import 'stylus/vars' @import 'stylus/mixins' @import 'stylus/styles' // templates @import 'stylus/common/*' @import 'directive/*' @import 'site/*' @import 'party/*' @import 'volume/*' @import 'asset/*' // shame @import 'stylus/shame'
Remove now-expired slot styl import
Remove now-expired slot styl import
Stylus
agpl-3.0
databrary/databrary,databrary/databrary,databrary/databrary,databrary/databrary
1ed6da265ad447c48ace01bb4eb6f66f63b4dc14
source/css/_partial/sidebar.styl
source/css/_partial/sidebar.styl
if sidebar is bottom @import "sidebar-bottom" else @import "sidebar-aside" .widget @extend $base-style line-height: line-height word-wrap: break-word font-size: 0.9em ul, ol list-style: none margin: 0 ul, ol margin: 0 20px ul list-style: disc ol list-style: decimal .category-list-count .tag-list-count .archive-list-count padding-left: 5px color: color-grey font-size: 0.85em &:before content: "(" &:after content: ")" .tagcloud a margin-right: 5px
if sidebar is bottom @import "sidebar-bottom" else @import "sidebar-aside" .widget @extend $base-style line-height: line-height word-wrap: break-word font-size: 0.9em ul, ol list-style: none margin: 0 ul, ol margin: 0 20px ul list-style: disc ol list-style: decimal .category-list-count .tag-list-count .archive-list-count padding-left: 5px color: color-grey font-size: 0.85em &:before content: "(" &:after content: ")" .tagcloud a margin-right: 5px display: inline-block
Fix wrongly newlines after dashes.
Fix wrongly newlines after dashes. Fix wrongly newlines after dashes. For example, a tag "org-mode". https://github.com/hexojs/hexo/issues/1092
Stylus
mit
1PxUp/Naji,SykieChen/hexo-theme-hic17,critikapp/blog-theme,Nagland/hexo-theme-landscape-cn,cgmartin/hexo-theme-bootstrap-blog,QiJiaZhang/present,sandinmyjoints/hexo-theme-landscape,JLHwung/hexo-theme-landscape,hanliang512288/landscape-h,howiefh/hexo-theme-landscape-f,ideoplex/hexo-theme-landscape,tommy351/hexo-theme-landscape,1PxUp/Naji,JLHwung/hexo-theme-landscape,sandinmyjoints/hexo-theme-landscape,howiefh/hexo-theme-landscape-f,cgmartin/hexo-theme-bootstrap-blog,hexojs/hexo-theme-landscape,hanliang512288/landscape-h,Nagland/hexo-theme-landscape-cn,takeshik/hexo-theme-landscape,takeshik/hexo-theme-landscape,wangruofeng/present,SykieChen/hexo-theme-hic17
805ccf2577344cc4513f545d850d7c475b1f3616
css/jeet/index.styl
css/jeet/index.styl
/* Syntax Quick Reference ---------------------- center(max_width = 1410px, padding = 15px) column[col](ratios = 1, offset = false) span(ratio = 1, offset = false) shift(ratios = 0) unshift() bp(w = 705px, mobile_first = false[mf]) endbp() stack(padding = 0, align = center[c, left, l, right, r]) edit() cf() */ @import 'utilities' @import 'reset' @import 'grid' @import 'typography' @import 'palette' @import 'shame' /* Content Priority Creation Scheme -------------------------------- 1. Grid Layout 2. Dummy Content Dump 3. JS Plugins 4. Typography 5. Colors 6. UI 7. Mobile - If mobile first, push to 1 8. Real Content Dump */
/* Syntax Quick Reference ---------------------- center(max_width = 1410px, padding = 15px) column[col](ratios = 1, offset = false) span(ratio = 1, offset = false) shift(ratios = 0) unshift() bp(w = 705px, mobile_first = false[mf]) endbp() stack(padding = 0, align = center[c, left, l, right, r]) edit() cf() */ @import 'palette' @import 'utilities' @import 'reset' @import 'grid' @import 'typography' @import 'shame' /* Content Priority Creation Scheme -------------------------------- 1. Grid Layout 2. Dummy Content Dump 3. JS Plugins 4. Typography 5. Colors 6. UI 7. Mobile - If mobile first, push to 1 8. Real Content Dump */
Move palette to top of imports
Move palette to top of imports
Stylus
mit
travisc5/jeet,macressler/jeet,jakecleary/jeet,ccurtin/jeet,mojotech/jeet,lucasoneves/jeet,durvalrafael/jeet,nagyistoce/jeet,pramodrhegde/jeet,greyhwndz/jeet,mojotech/jeet,rafaelstz/jeet
7d0811b19ea0340e37d07a4e0faa4a0b66e2d276
apps/apply/stylesheets/index.styl
apps/apply/stylesheets/index.styl
form-width = 600px #partner-application-page padding 20px 0 .partner-application-header text-align center max-width form-width margin 0 auto padding 0 5% > h1 font-size 30px margin 10px 0 20px 0 line-height 1.1 .pah-step color gray-darker-color .partner-application-form max-width form-width margin 20px auto .stacked-form-cell margin 20px 0 .paf-checkbox-set margin 20px 10% .pah-success max-width (form-width / 1.5) margin 20px auto text-align center > p text-align left block-margins(10px) .pah-success-message color green-color > .icon-check font-size 0.75em margin-right 0.25em line-height 1
form-width = 600px #partner-application-page padding 20px 0 font-size 17px .partner-application-header text-align center max-width form-width margin 0 auto padding 0 5% > h1 font-size 30px margin 10px 0 20px 0 line-height 1.1 .pah-step color gray-darker-color .partner-application-form max-width form-width margin 20px auto .stacked-form-cell margin 20px 0 .paf-checkbox-set margin 20px 10% .pah-success max-width (form-width / 1.5) margin 20px auto text-align center > p text-align left block-margins(10px) .pah-success-message color green-color > .icon-check font-size 0.75em margin-right 0.25em line-height 1
Change base font-size to 17px
Change base font-size to 17px
Stylus
mit
joeyAghion/force,xtina-starr/force,artsy/force,TribeMedia/force-public,anandaroop/force,erikdstock/force,artsy/force,izakp/force,TribeMedia/force-public,xtina-starr/force,kanaabe/force,yuki24/force,xtina-starr/force,oxaudo/force,erikdstock/force,yuki24/force,cavvia/force-1,cavvia/force-1,mzikherman/force,izakp/force,cavvia/force-1,izakp/force,cavvia/force-1,eessex/force,mzikherman/force,joeyAghion/force,artsy/force-public,anandaroop/force,damassi/force,dblock/force,xtina-starr/force,oxaudo/force,kanaabe/force,damassi/force,kanaabe/force,artsy/force,artsy/force,kanaabe/force,anandaroop/force,joeyAghion/force,yuki24/force,erikdstock/force,oxaudo/force,dblock/force,damassi/force,joeyAghion/force,oxaudo/force,mzikherman/force,eessex/force,anandaroop/force,erikdstock/force,eessex/force,izakp/force,artsy/force-public,dblock/force,mzikherman/force,kanaabe/force,eessex/force,damassi/force,yuki24/force
48166159acb98f3d7cdf5c592e07ad040679d18c
components/logged_in_navigation/components/notifications/index.styl
components/logged_in_navigation/components/notifications/index.styl
.Notifications max-height block_width overflow-y auto padding 1em 1.66em .Notification collapsed-margins(1.25em) text-align left font-size font-size-xs line-height line-height-base a font-weight bold &__timestamp text-transform uppercase font-size font-size-xx letter-spacing 0.025em color colors-gray-light &--unread & .Notification__timestamp & & * color colors-state-alert !important
.Notifications max-height block_width overflow-y auto padding 1em 1.33em .Notification collapsed-margins(1.25em) text-align left font-size font-size-xs line-height line-height-base a font-weight bold &__timestamp text-transform uppercase font-size font-size-xx letter-spacing 0.025em color colors-gray-light &--unread & .Notification__timestamp & & * color colors-state-alert !important
Bring in notifications side padding
Bring in notifications side padding
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
7da7290352cb099201abb9d1128602584c17ca24
src/components/JosekiAdmin/JosekiAdmin.styl
src/components/JosekiAdmin/JosekiAdmin.styl
/* * Copyright (C) 2012-2017 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/>. */ .audit-container { flex-grow: 1; flex-shrink:0; flex-basis:auto; display: flex; flex-direction: column; .audit-actions { flex-grow: 1; display: flex; justify-content: flex-end; } .position-link { themed color link-color; } .position-link:hover { cursor:pointer; text-decoration:underline; } }
/* * Copyright (C) 2012-2017 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/>. */ .audit-container { flex-grow: 1; flex-shrink:0; flex-basis:auto; display: flex; flex-direction: column; .audit-actions { flex-grow: 1; display: flex; justify-content: flex-end; } .position-link { themed color link-color; } .position-link:hover { cursor:pointer; text-decoration:underline; } .ReactTable, .ReactTable * { themed border-color shade5 !important; } .pagination-bottom .-pagination { .-btn { themed color fg; themed background card-background-color; } input, select { themed background input-bg; } } }
Support theme on admin table
Support theme on admin table
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
724eb5039116c7c4c0214ef6bf950cbddb54e301
app/examples/index.styl
app/examples/index.styl
html, body, .page width: 100% height: 100% margin: 0 .test-list margin: 15px .vis-table height: 300px .vis-full width: 100% height: 100% .containing-matrix width: 100% canvas display: block .overlay position: fixed bottom: 200px right: 100px width: 200px padding: 20px background-color: #ffeeaabb .hidden display: none visibility: hidden
@import url('https://fonts.googleapis.com/css?family=Arimo'); html, body, .page width: 100% height: 100% margin: 0 .test-list margin: 15px .vis-table height: 300px .vis-full width: 100% height: 100% .containing-matrix width: 100% canvas display: block .overlay position: fixed bottom: 200px right: 100px width: 200px padding: 20px background-color: #ffeeaabb .hidden display: none visibility: hidden g.mark-text text font-family: Arimo !important #vis-element overflow hidden
Use google web font for all Vega text rendering (in SVG mode)
Use google web font for all Vega text rendering (in SVG mode)
Stylus
apache-2.0
Kitware/candela,Kitware/candela,Kitware/candela,Kitware/candela,Kitware/candela
d884a9b90d532a351f17b82474aa9ef7725d32e2
src/styles/index.styl
src/styles/index.styl
* box-sizing: border-box html, body height: 100% body background: #F9F7F4 font-family: Arial, Helvetica, sans-serif cursor: default .app-container min-height: 100% display: flex justify-content: center align-items: center .app min-width: 970px height: 860px display: flex flex-direction: column align-items: center box-shadow: 0 2px 15px 0 rgba(0,0,0,0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12) background: url("../../images/main_background.jpg") background-size: cover position: relative .top display: flex align-items: center padding: 25px 0 .middle position: relative .img-container width: 100% img opacity: 0.7 box-shadow: 0 10px 55px 5px rgba(0,0,0,0.27) mix-blend-mode: soft-light .show-box position: absolute top: 0 z-index: 1 width: 100% height: 100% display: flex align-items: center justify-content: center
* box-sizing: border-box html, body height: 100% body background: #F9F7F4 font-family: Arial, Helvetica, sans-serif cursor: default .app-container .app height: 100vh display: flex flex-direction: column align-items: center box-shadow: 0 2px 15px 0 rgba(0,0,0,0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12) background: url("../../images/main_background.jpg") background-size: cover position: relative .top display: flex align-items: center padding: 25px 0 .middle position: relative .img-container width: 100% img opacity: 0.7 box-shadow: 0 10px 55px 5px rgba(0,0,0,0.27) mix-blend-mode: soft-light .show-box position: absolute top: 0 z-index: 1 width: 100% height: 100% display: flex align-items: center justify-content: center
Set app to full screen
Set app to full screen
Stylus
mit
IvaPetkova/My-HTML-Projects
e136fc2c401fc88faf0012bf3ce4a13af0cf3946
src/styles/index.styl
src/styles/index.styl
* box-sizing: border-box html, body height: 100% body background: #F9F7F4 font-family: Arial, Helvetica, sans-serif cursor: default .app-container .app height: 100vh display: flex flex-direction: column align-items: center box-shadow: 0 2px 15px 0 rgba(0,0,0,0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12) background: url("../../images/main_background.jpg") background-size: cover position: relative .top display: flex align-items: center padding: 25px 0 .middle width: 100% position: relative .img-container img width: 100% height: 60vh opacity: 0.7 box-shadow: 0 10px 55px 5px rgba(0,0,0,0.27) mix-blend-mode: soft-light .show-box position: absolute top: 0 z-index: 1 width: 100% height: 100% display: flex align-items: center justify-content: center
* box-sizing: border-box html, body height: 100% body background: #F9F7F4 font-family: Arial, Helvetica, sans-serif cursor: default .app-container .app height: 100vh display: flex flex-direction: column align-items: center box-shadow: 0 2px 15px 0 rgba(0,0,0,0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12) background: url("../../images/main_background.jpg") background-size: cover position: relative .top display: flex align-items: center padding: 25px 0 .middle width: 100% position: relative .img-container img width: 100% height: 60vh opacity: 0.7 box-shadow: 0 10px 55px 5px rgba(0,0,0,0.27) mix-blend-mode: soft-light .show-box position: absolute top: 0 z-index: 1 width: 100% height: 100% display: flex align-items: center justify-content: center .bottom width: 100% flex: 1
Add width to bottom container
Add width to bottom container
Stylus
mit
IvaPetkova/My-HTML-Projects
e2fb9bb69fc931bd84b8b9e444b505e8411b5da1
client/app/components/_expandablePanel/expandablePanel.styl
client/app/components/_expandablePanel/expandablePanel.styl
.expandablePanelSlider text-align: center position: relative border-top: 1px solid #ccc .expandablePanelSlider button position: absolute top: -1em margin-left: -1em border-radius: 1em height: 2em width: 2em padding: 0.4em background-color: white border: 1px solid #ddd .expandablePanelSlider:before display: block content: "" position: relative top: -1em height: 1em background-image: linear-gradient(0deg, #eee 0%, rgba(0,0,0,0) 100%) opacity: 1 .content overflow: hidden transition: max-height 1s .expandable.expanded .content max-height: 1000em .expandable.collapsed .content max-height: 4em .expanded .expandablePanelSlider:before opacity: 0
.expandablePanelSlider text-align: center position: relative border-top: 1px solid #ccc .expandablePanelSlider button position: absolute top: -1em margin-left: -1em border-radius: 1em height: 2em width: 2em padding: 0.4em background-color: white border: 1px solid #ddd .expandablePanelSlider:before display: block content: "" position: relative top: -1em height: 1em background-image: linear-gradient(0deg, #eee 0%, rgba(0,0,0,0) 100%) opacity: 1 .content overflow: hidden transition: max-height 1s .expandable.expanded .content max-height: 1000em .expandable.collapsed .content max-height: 20em .expanded .expandablePanelSlider:before opacity: 0
Increase size of collapsed panel
Increase size of collapsed panel
Stylus
mit
yunity/foodsaving-frontend,yunity/foodsaving-frontend,yunity/karrot-frontend,yunity/karrot-frontend,yunity/foodsaving-frontend,yunity/karrot-frontend,yunity/karrot-frontend,yunity/foodsaving-frontend
a9a28cddadd91b8a91fa8de9ff0dcb0f903d3b9e
web/app/themes/theme/assets/styles/components/home-intro.styl
web/app/themes/theme/assets/styles/components/home-intro.styl
.c-home-intro min-height 100% padding-top rem(50px) padding-bottom rem(50px) margin-top rem(-50px) margin-bottom rem(-50px) background-repeat no-repeat background-position 70% 100% background-size: cover +media-query($screen, $bp--tablet--portrait) background-position 50% 30% .c-home-intro__content col(12) .c-home-intro__buttons-wrap display block +media-query($screen, $bp--tablet--portrait) margin-top rem(25px) +media-query($screen, $bp--tablet--landscape) margin-top rem(20px) +media-query($screen, $bp--desktop--medium) margin-top rem(40px)
.c-home-intro min-height 100% padding-top rem(50px) padding-bottom rem(50px) margin-top rem(-50px) margin-bottom rem(-50px) background-repeat no-repeat background-position 70% 100% background-size: cover +media-query($screen, $bp--tablet--portrait) background-position 50% 30% .c-home-intro__content col(12) .c-home-intro__buttons-wrap display block margin-bottom rem(35px) +media-query($screen, $bp--tablet--portrait) margin-top rem(25px) margin-bottom 0 +media-query($screen, $bp--tablet--landscape) margin-top rem(20px) +media-query($screen, $bp--desktop--medium) margin-top rem(40px)
Add margin to homepage cta buttons wrapper on mobile screen
Add margin to homepage cta buttons wrapper on mobile screen
Stylus
mit
rslnk/reimagine-belonging,rslnk/reimagine-belonging,rslnk/reimagine-belonging
3e25cc9dbe06c4eece7a42ece506d247af36f63e
components/artwork_item/stylesheets/index.styl
components/artwork_item/stylesheets/index.styl
@import '../../stylus_lib/index.styl' @import './overlay_controls' .artwork-item-image-container margin-bottom 11px img vertical-align bottom .artwork-item-image-link display inline-block overflow hidden position relative max-width 100% .artwork-item-caption color dark-gray-text-color font-size 15px line-height 1.3 text-align left a color dark-gray-text-color &.avant-garde-button-black color white p.artwork-item-overflow overflow ellipsis .artwork-item-artist font-weight bold .artwork-item-image background-color #f2f2f2 .artwork-item-auction-bid-status margin 20px 0 10px color black font-size 13px avant-garde() .artwork-item-blurb color black font-size 17px margin-bottom 1em margin-top 1em text-align left .artwork-item-sold background-color dark-gray-text-color color light-gray-border-color cursor default &:hover color dark-gray-text-color background-color light-gray-border-color .artwork-item .avant-garde-button-black margin-right 1em margin-top 1em
@import '../../stylus_lib/index.styl' @import './overlay_controls' .artwork-item-image-container margin-bottom 11px img vertical-align bottom .artwork-item-image-link display inline-block overflow hidden position relative max-width 100% .artwork-item-caption color dark-gray-text-color font-size 15px line-height 1.3 text-align left a color dark-gray-text-color &.avant-garde-button-black color white // Match width of 'Bid' button to be the same // as the 'More Info' button &.artwork-item-bid min-width 90px p.artwork-item-overflow overflow ellipsis .artwork-item-artist font-weight bold .artwork-item-image background-color #f2f2f2 .artwork-item-auction-bid-status margin 20px 0 10px color black font-size 13px avant-garde() .artwork-item-blurb color black font-size 17px margin-bottom 1em margin-top 1em text-align left .artwork-item-sold background-color dark-gray-text-color color light-gray-border-color cursor default &:hover color dark-gray-text-color background-color light-gray-border-color .artwork-item .avant-garde-button-black margin-right 1em margin-top 1em
Make width of "Bid" button the same as "More Info" button
Make width of "Bid" button the same as "More Info" button
Stylus
mit
anandaroop/force,erikdstock/force,eessex/force,damassi/force,erikdstock/force,xtina-starr/force,xtina-starr/force,artsy/force,artsy/force,eessex/force,dblock/force,xtina-starr/force,artsy/force,mzikherman/force,joeyAghion/force,damassi/force,yuki24/force,eessex/force,yuki24/force,anandaroop/force,mzikherman/force,yuki24/force,cavvia/force-1,xtina-starr/force,kanaabe/force,dblock/force,izakp/force,eessex/force,izakp/force,artsy/force-public,dblock/force,izakp/force,joeyAghion/force,cavvia/force-1,kanaabe/force,erikdstock/force,kanaabe/force,anandaroop/force,anandaroop/force,damassi/force,yuki24/force,TribeMedia/force-public,TribeMedia/force-public,kanaabe/force,damassi/force,mzikherman/force,oxaudo/force,oxaudo/force,mzikherman/force,kanaabe/force,oxaudo/force,artsy/force,oxaudo/force,cavvia/force-1,joeyAghion/force,cavvia/force-1,erikdstock/force,joeyAghion/force,artsy/force-public,izakp/force
c2395a93a0edf501520504c3571ab7d8b39ea46a
css/markdown-video.styl
css/markdown-video.styl
// Basic style for embedded videos in markdown .embed-responsive iframe max-height: 390px max-width: 600px width: 100%
// Basic style for embedded videos in markdown .embed-responsive iframe max-height: 390px max-width: 600px width: 100% .markdown video max-width: 100%
Set a max-width for video Set a max width for embedded video tags in Markdown sections.
Set a max-width for video Set a max width for embedded video tags in Markdown sections.
Stylus
apache-2.0
amyrebecca/Panoptes-Front-End,zooniverse/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,amyrebecca/Panoptes-Front-End
38649d12251fa48e4597e0769d59d549a3ddb7bc
apps/partner2/stylesheets/head.styl
apps/partner2/stylesheets/head.styl
#partner .partner-header padding-top 30px margin-bottom 40px .partner-brand-container margin-bottom 40px .partner-info .partner-icon .partner-actions .partner-nav display inline-block vertical-align middle .partner-info width calc(100% \- 170px) margin-right 30px .partner-name font-size 37px line-height 1.5 .partner-locations font-size 15px color gray-darker-color line-height 1.5 min-height 1.5em .partner-icon text-align center .profile-badge-icon display inline-block width 140px height 140px line-height @height vertical-align top img max-width 100% max-height 100% .partner-actions width 300px margin-right 30px .follow-button margin-right 15px .partner-followers display inline-block color gray-darker-color .partner-nav width calc(100% \- 330px) text-align right
#partner .partner-header padding-top 30px margin-bottom 40px .partner-brand-container margin-bottom 40px .partner-info .partner-icon .partner-actions .partner-nav display inline-block vertical-align middle .partner-info width calc(100% \- 170px) margin-right 30px .partner-name font-size 37px line-height 1.5 .partner-locations font-size 15px color gray-darker-color line-height 1.5 min-height 1.5em .partner-icon text-align center .profile-badge-icon display inline-block width 140px height 140px line-height @height vertical-align middle img max-width 100% max-height 100% display inline-block vertical-align middle .partner-actions width 300px margin-right 30px .follow-button margin-right 15px .partner-followers display inline-block color gray-darker-color .partner-nav width calc(100% \- 330px) text-align right
Fix the vertical alignment of the partner logo if it is not square.
Fix the vertical alignment of the partner logo if it is not square.
Stylus
mit
oxaudo/force,artsy/force-public,xtina-starr/force,joeyAghion/force,eessex/force,erikdstock/force,oxaudo/force,eessex/force,cavvia/force-1,kanaabe/force,eessex/force,izakp/force,artsy/force,yuki24/force,kanaabe/force,cavvia/force-1,eessex/force,yuki24/force,mzikherman/force,mzikherman/force,damassi/force,artsy/force,anandaroop/force,cavvia/force-1,artsy/force-public,izakp/force,damassi/force,joeyAghion/force,joeyAghion/force,oxaudo/force,damassi/force,dblock/force,erikdstock/force,erikdstock/force,mzikherman/force,dblock/force,damassi/force,erikdstock/force,anandaroop/force,anandaroop/force,yuki24/force,mzikherman/force,kanaabe/force,kanaabe/force,xtina-starr/force,artsy/force,xtina-starr/force,oxaudo/force,joeyAghion/force,xtina-starr/force,yuki24/force,anandaroop/force,izakp/force,izakp/force,kanaabe/force,cavvia/force-1,artsy/force,dblock/force
a940d50a67512185e7b6aca8e206e1653f42f333
src/stylesheets/mixins/page-text.styl
src/stylesheets/mixins/page-text.styl
page-text() font-family 'Roboto Slab', 'Georgia', 'Times New Roman', serif text-rendering optimizeLegibility font-kerning normal // NOTE: currently these only do anything in Chrome. font-feature-settings kern -webkit-font-feature-settings "kern" 1 -moz-font-feature-settings "kern" font-size 18px line-height 1.825em overflow-x visible p text-indent 36px margin 0
page-text() font-family 'Georgia', 'Times New Roman', serif text-rendering optimizeLegibility font-kerning normal // NOTE: currently these only do anything in Chrome. font-feature-settings kern -webkit-font-feature-settings "kern" 1 -moz-font-feature-settings "kern" font-size 18px line-height 1.5em overflow-x visible p text-indent 36px margin 0
Use Georgia in the outline.
Use Georgia in the outline.
Stylus
apache-2.0
Iced-Tea/dreamwriter,jlongster/dreamwriter,ajnsit/dreamwriter,ajnsit/dreamwriter,manesiotise/dreamwriter,Softsapiens/dreamwriter,Softsapiens/dreamwriter,makyo/dreamwriter,rtfeldman/dreamwriter,zztczcx/dreamwriter,rtfeldman/dreamwriter,manesiotise/dreamwriter,jlongster/dreamwriter,makyo/dreamwriter,zztczcx/dreamwriter,Iced-Tea/dreamwriter
ada751acd5fcf6766b1d68e1e42b89df3aca3073
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.8rem font-family: cursive color: #ccc margin-bottom: 20px .city-name margin-bottom: 8px font-size: 1.6rem text-align: center .country margin-bottom: 10px &.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
.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.8rem font-family: cursive color: #ccc margin-bottom: 20px .city-name margin-bottom: 8px font-size: 1.6rem text-align: center .country margin-bottom: 10px &.show opacity: 1 transition: opacity .3s display: flex @media (max-height: 500px) .current-weather font-size: 1.2rem margin-bottom: 15px .city-name font-size: 1.4rem @media (max-width: 540px) .current-weather width: 45vh height: 45vh @media (max-height: 850px) .current-weather width: 45vh height: 45vh
Add media screen about font size in current weather
Add media screen about font size in current weather
Stylus
mit
IvaPetkova/My-HTML-Projects
b87bd54b17137b2085f4bbb1cee098ff3412f4e4
src/stylus/workers.styl
src/stylus/workers.styl
.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
.worker-list list-style-type none margin 0 padding 0 li width 80% padding 1em margin 0.5em auto display inline-block border link-color 1px solid h3 margin 0 .versions margin 0 padding 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 padding in worker list
Fix padding in worker list
Stylus
mit
frigg/frigg-hq-frontend,frigg/frigg-hq-frontend
65ea65468e5d2a19ba953f3488873207afc30d56
stylus/base/grid.styl
stylus/base/grid.styl
.ion-grid { display: flex; for num in (1...11) { .ion-col-{num} { flex: num; margin: $main-padding; padding: $main-padding 0 $main-padding 0; } } } .ion-container { box-sizing: border-box; margin-left: auto; margin-right: auto; max-width: container.width; padding-left: $main-padding; padding-right: $main-padding; } /* For small screen sizes */ @media (max-width: container.width) { .ion-grid { flex-direction: column; } .ion-container { width: 100%; } for num in (1...11) { .ion-grid .ion-col-{num} { margin: $main-padding 0; } } }
.ion-grid { display: flex; for num in (1...11) { .ion-col-{num} { flex: num; margin: $main-padding; padding: $main-padding 0 $main-padding 0; } } } .ion-container { box-sizing: border-box; margin-left: auto; margin-right: auto; max-width: container.width; padding-left: $main-padding; padding-right: $main-padding; } /* For small screen sizes */ @media (max-width: container.width-sm) { .ion-grid { flex-direction: column; } .ion-container { width: 100%; } for num in (1...11) { .ion-grid .ion-col-{num} { margin: $main-padding 0; } } }
Use width-sm variable for @media rule
Use width-sm variable for @media rule
Stylus
mit
Ionogy/kernel.css,Ionogy/kernel.css
4e4922efa6e34a353903dc327d1108d1560feff7
client/app/styles/_compose.styl
client/app/styles/_compose.styl
/* new email window */ #email-compose &.enable display block &.col-md-6 &.col-md-12 transition width 0.2s ease-out h3 color #444 margin-top 0 a.close-email margin-right 1em a.expand float right font-size 2em .editor, .rt-editor border 1px solid #444 min-height 16em height auto width 100% text-align left color black .attachements margin 1em 0 .input-group.contact-group padding 0 15px // pixels because we override Bootstrap .compose-toggle float right a padding 0 1em .compose-from line-height 2em color darkcolor .compose-cc, .compose-bcc display none .compose-cc.shown, .compose-bcc.shown display inherit
/* new email window */ #email-compose &.enable display block &.col-md-6 &.col-md-12 transition width 0.2s ease-out h3 color #444 margin-top 0 a.close-email margin-right 1em a.expand float right font-size 2em .editor, .rt-editor border 1px solid #444 min-height 16em height auto width 100% text-align left color black .attachements margin 1em 0 .input-group.contact-group padding 0 15px // pixels because we override Bootstrap .compose-toggle float right a padding 0 1em .compose-input position relative .compose-from line-height 2em color darkcolor .compose-cc, .compose-bcc display none .compose-cc.shown, .compose-bcc.shown display inherit
Fix display of account selection in compose
Fix display of account selection in compose
Stylus
agpl-3.0
cozy/cozy-emails,nono/cozy-emails,m4dz/cozy-emails,nono/cozy-emails,robinmoussu/cozy-emails,m4dz/cozy-emails,clochix/cozy-emails,cozy/cozy-emails,poupotte/cozy-emails,aenario/cozy-emails,aenario/cozy-emails,frankrousseau/cozy-emails,kelukelu/cozy-emails,lemelon/cozy-emails,robinmoussu/cozy-emails,poupotte/cozy-emails,frankrousseau/cozy-emails,clochix/cozy-emails,cozy-labs/emails,cozy-labs/emails,lemelon/cozy-emails,kelukelu/cozy-emails
1b0a8398d50576fb746accb652968bdcbb737905
src/table-sortable.styl
src/table-sortable.styl
// sortable effect .table-sortable { table { th { white-space: nowrap; } .column-sort { color: #222; &:hover, &:focus { color: #222; text-decoration: none; } > .overflow-ellipsis { vertical-align: middle; display: inline-block; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 16px); // 16px is icon width } > i { vertical-align: middle; } } .column-sort-asc, .column-sort-desc { vertical-align: top; margin-top: 1px; display: inline-block; width: 16px; height: 16px; } .column-sort-asc { background-image: url("./icon-thSortAscending.svg"); } .column-sort-desc { background-image: url("./icon-thSortDescending.svg"); } } }
// sortable effect .table-sortable { table { > thead > tr > th { white-space: nowrap; padding: 0; > *:first-child { padding: 8px 12px; } } .column-sort { color: #222; &:hover, &:focus { color: #222; text-decoration: none; } > .overflow-ellipsis { vertical-align: middle; display: inline-block; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 16px); // 16px is icon width } > i { vertical-align: middle; } } .column-sort-asc, .column-sort-desc { vertical-align: top; margin-top: 1px; display: inline-block; width: 16px; height: 16px; } .column-sort-asc { background-image: url("./icon-thSortAscending.svg"); } .column-sort-desc { background-image: url("./icon-thSortDescending.svg"); } } }
Adjust hover style of sorting header.
Adjust hover style of sorting header.
Stylus
mit
trendmicro-frontend/react-table
8510483bd8be95e6db0a99972097ae73106243ea
web/static/css/global.styl
web/static/css/global.styl
// Browser vendor prefixes library @import 'nib' @import '_config' h1, h2, h3, h4 title-font() .tooltip::after title-font() shadow-elevation-16dp() round-corners() z-index: 1 content: attr(data-tooltip) position: absolute top: 100% left: -2em white-space: nowrap padding: .5em color: white background-color: rgb(92, 97, 108) font-size: .8em transform: translate3d(0, -20%, 0); opacity: 0 pointer-events: none transition: opacity transition-timing transition-function, transform transition-timing transition-function .tooltip:hover::after transform: translate3d(0, 0, 0); opacity: 1 main > .search width: 20em position: relative margin: 1.5em auto 0 auto main > .search label content: "🔎" position: absolute left: .3em top: .3em font-size: inherit main > .search input width: 100% padding: .3em padding-left: 2em display: block
// Browser vendor prefixes library @import 'nib' @import '_config' h1, h2, h3, h4 title-font() .tooltip position: relative .tooltip::after title-font() shadow-elevation-16dp() round-corners() z-index: 1 content: attr(data-tooltip) position: absolute top: 100% left: -2em white-space: nowrap padding: .5em color: white background-color: rgb(92, 97, 108) font-size: .8em transform: translate3d(0, -20%, 0); opacity: 0 pointer-events: none transition: opacity transition-timing transition-function, transform transition-timing transition-function .tooltip:hover::after transform: translate3d(0, 0, 0); opacity: 1 main > .search width: 20em position: relative margin: 1.5em auto 0 auto main > .search label content: "🔎" position: absolute left: .3em top: .3em font-size: inherit main > .search input width: 100% padding: .3em padding-left: 2em display: block
Fix toolips in user skill edit in Chrome
Fix toolips in user skill edit in Chrome
Stylus
mit
ClubNix/academy,ClubNix/academy
2e6463b19b5188d7edfc087d4188ea95c59bfccc
client/app/styles/sections/s-content.styl
client/app/styles/sections/s-content.styl
.s-content padding-top 70px display flex justify-content center height 100vh align-items flex-start .login & align-items center .container width 100%
.s-content padding-top 70px display flex justify-content center height 100vh align-items flex-start .login & .register & align-items center .container width 100%
Align register form content to center of the viewport
Align register form content to center of the viewport Closes #164.
Stylus
mit
yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time,yandex-shri-minsk-2016/yummy-time
6e64b7722a4870903ac4e0b1f92381e12b4fcb8a
client/styles/create.styl
client/styles/create.styl
@require 'common.import' #create-project-pad pad-base() padding 20px margin 25px margin-bottom 0 &>:first-child margin-top 0 #create-buttons margin-top 20px
@require 'common.import' #create-project-pad pad-base() padding 20px margin 25px margin-bottom 0 &>:first-child margin-top 0 input, select box-sizing border-box width 300px #create-buttons margin-top 20px
Define widths of input fields
Define widths of input fields
Stylus
mit
praneybehl/muzhack,muzhack/muzhack,muzhack/musitechhub,muzhack/muzhack,praneybehl/muzhack,muzhack/muzhack,muzhack/musitechhub,muzhack/muzhack,muzhack/musitechhub,muzhack/musitechhub,praneybehl/muzhack,praneybehl/muzhack
ce0f207cae8d923634a00fd5d4529c64bd540ec9
app/assets/stylesheets/survey_modules/input.styl
app/assets/stylesheets/survey_modules/input.styl
.survey-page #main input[type=text], input[type='email'], input[type='password'], textarea, select, .expandingArea > pre background-color $bg_light_gray color $text_dk font-size 17px &:focus border-color $contextual
.survey-page #main input[type=text], input[type='email'], input[type='password'], textarea, select background-color $bg_light_gray color $text_dk font-size 17px &:focus border-color $contextual
Remove expandingArea from survey css
Remove expandingArea from survey css
Stylus
mit
WikiEducationFoundation/WikiEduDashboard,feelfreelinux/WikiEduDashboard,alpha721/WikiEduDashboard,Wowu/WikiEduDashboard,sejalkhatri/WikiEduDashboard,sejalkhatri/WikiEduDashboard,sejalkhatri/WikiEduDashboard,KarmaHater/WikiEduDashboard,majakomel/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,Wowu/WikiEduDashboard,majakomel/WikiEduDashboard,alpha721/WikiEduDashboard,KarmaHater/WikiEduDashboard,feelfreelinux/WikiEduDashboard,majakomel/WikiEduDashboard,Wowu/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,sejalkhatri/WikiEduDashboard,MusikAnimal/WikiEduDashboard,alpha721/WikiEduDashboard,Wowu/WikiEduDashboard,alpha721/WikiEduDashboard,majakomel/WikiEduDashboard,feelfreelinux/WikiEduDashboard,MusikAnimal/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,MusikAnimal/WikiEduDashboard,MusikAnimal/WikiEduDashboard
d7cef93299e0a2b1d42ba4ab61150a609edbca23
src/styles/photoList.styl
src/styles/photoList.styl
@require 'cozy-ui' :local .pho-section left-spaced(32px) .pho-photo position relative display inline-block background-color grey-10 margin 0 1em 1em 0 a vertical-align middle .pho-photo-item height em(240px) transition transform .2s ease .pho-photo-select position absolute z-index 2 opacity 0 height 2em width 2em padding 1em cursor pointer &[data-input=checkbox] label::before box-shadow 0 0 0 3px rgba(0,0,0,.3), inset 0 0 0 1.5em rgba(255,255,255,.8) &[data-input=checkbox] input[type=checkbox]:checked + label::after background-size 1.5em background-position center center &[data-input=checkbox] input[type=checkbox]:checked + label::before box-shadow 0 0 0 3px dodger-blue, inset 0 0 0 1.5em dodger-blue .pho-photo--selected .pho-photo-item transform:scale(0.9); .pho-section--has-selection .pho-photo-select width 100% height 100% .pho-photo:hover .pho-photo-select opacity 1 .pho-list-selection .pho-photo-select opacity 1
@require 'cozy-ui' :local .pho-section left-spaced(32px) .pho-photo position relative display inline-block background-color grey-10 margin 0 1em 1em 0 a vertical-align middle .pho-photo-item height em(240px) transition transform .2s ease .pho-photo-select position absolute z-index 2 opacity 0 height 2em width 2em padding 1em cursor pointer &[data-input=checkbox] label::before box-shadow 0 0 0 3px rgba(0,0,0,.3), inset 0 0 0 1.5em rgba(255,255,255,.8) &[data-input=checkbox] input[type=checkbox]:checked + label::after background-size 1.5em background-position center center &[data-input=checkbox] input[type=checkbox]:checked + label::before background-color dodger-blue box-shadow 0 0 0 3px dodger-blue, inset 0 0 0 1.5em dodger-blue .pho-photo--selected .pho-photo-item transform:scale(0.9); .pho-section--has-selection .pho-photo-select width 100% height 100% .pho-photo:hover .pho-photo-select opacity 1 .pho-list-selection .pho-photo-select opacity 1
Add background color on checked checbox to avoid white offset easily spotted with a microscope :microscope:
[fix] Add background color on checked checbox to avoid white offset easily spotted with a microscope :microscope:
Stylus
agpl-3.0
goldoraf/cozy-drive,y-lohse/cozy-files-v3,y-lohse/cozy-drive,y-lohse/cozy-photos-v3,goldoraf/cozy-drive,goldoraf/cozy-drive,y-lohse/cozy-files-v3,enguerran/cozy-drive,goldoraf/cozy-drive,enguerran/cozy-files-v3,nono/cozy-photos-v3,enguerran/cozy-drive,y-lohse/cozy-photos-v3,nono/cozy-files-v3,nono/cozy-photos-v3,enguerran/cozy-files-v3,cozy/cozy-files-v3,y-lohse/cozy-drive,goldoraf/cozy-photos-v3,y-lohse/cozy-drive,cozy/cozy-files-v3,cozy/cozy-files-v3,enguerran/cozy-files-v3,cozy/cozy-photos-v3,nono/cozy-files-v3,y-lohse/cozy-files-v3,cozy/cozy-files-v3,cozy/cozy-photos-v3,enguerran/cozy-drive,nono/cozy-files-v3,enguerran/cozy-files-v3,goldoraf/cozy-photos-v3,enguerran/cozy-drive,y-lohse/cozy-drive,nono/cozy-files-v3
0bd6337af92ec165ba557014cd2d6b4c9740cf07
src/cljs/clj_templates/style/common.styl
src/cljs/clj_templates/style/common.styl
body margin 0 padding 0 font-family font-base, sans-serif font-weight font-base-weight font-size font-size-medium h1 font-weight font-base-weight a color color-secondary text-decoration none &:hover text-decoration underline p margin-top -0.3rem .spinner border 2px solid lightgrey border-top: 2px solid dimgrey border-radius 50% width 4rem height 4rem animation spin 1.1s cubic-bezier(0.7, 0.2, 0.3, 0.7) infinite @keyframes spin 0% { transform: rotate(40deg) } 100% { transform: rotate(400deg) }
body margin 0 padding 0 font-family font-base, sans-serif font-weight font-base-weight font-size font-size-medium h1 font-weight font-base-weight a color color-secondary text-decoration none &:hover text-decoration underline p margin-top -0.3rem .spinner border 2px solid lightgrey border-top: 2px solid dimgrey border-radius 50% width 4rem height 4rem animation spin 1.1s cubic-bezier(0.7, 0.2, 0.3, 0.7) infinite @keyframes spin 0% { transform: rotate(40deg) } 100% { transform: rotate(400deg) } [placeholder]:focus::-webkit-input-placeholder color lightgrey
Make placeholder go dim when focusing search input.
Make placeholder go dim when focusing search input.
Stylus
epl-1.0
Dexterminator/clj-templates,Dexterminator/clj-templates
c7b07a261de17a758f8c77bf57991b8116dc69b1
kolibri/core/assets/src/views/tab-items.styl
kolibri/core/assets/src/views/tab-items.styl
@require '~kolibri.styles.definitions' li display: inline-block text-align: center .tab display: inline-block margin: 0 padding-top: 0 padding-bottom: 0 padding-right: 12px padding-left: 12px max-width: 264px min-width: 72px border: none border-radius: 0 font-size: 14px text-decoration: none color: $core-text-annotation &:hover, &:focus background-color: $core-action-light color: $core-action-normal .router-link-active, .tab-selected border-bottom-style: solid border-bottom-width: 2px border-bottom-color: $core-action-normal color: $core-action-normal .icon font-size: 24px .tab-icon padding-top: 11px padding-bottom: 11px .tab-title font-weight: bold text-transform: uppercase padding-top: 15px padding-bottom: 15px overflow-x: hidden text-overflow: ellipsis .tab-has-icon-and-title .tab-icon padding-top: 10px padding-bottom: 10px .tab-title padding-top: 0 padding-bottom: 10px
@require '~kolibri.styles.definitions' li display: inline-block text-align: center .tab display: inline-block margin: 0 padding-top: 0 padding-bottom: 0 padding-right: 12px padding-left: 12px max-width: 264px min-width: 72px border: none border-radius: 0 font-size: 14px text-decoration: none color: $core-text-annotation &:hover, &:focus background-color: $core-action-light color: $core-action-normal outline: none .router-link-active, .tab-selected border-bottom-style: solid border-bottom-width: 2px border-bottom-color: $core-action-normal color: $core-action-normal .icon font-size: 24px .tab-icon padding-top: 11px padding-bottom: 11px .tab-title font-weight: bold text-transform: uppercase padding-top: 15px padding-bottom: 15px overflow-x: hidden text-overflow: ellipsis .tab-has-icon-and-title .tab-icon padding-top: 10px padding-bottom: 10px .tab-title padding-top: 0 padding-bottom: 10px
Remove extra outline for a.tab elements
Remove extra outline for a.tab elements
Stylus
mit
christianmemije/kolibri,christianmemije/kolibri,MingDai/kolibri,lyw07/kolibri,MingDai/kolibri,benjaoming/kolibri,rtibbles/kolibri,benjaoming/kolibri,DXCanas/kolibri,indirectlylit/kolibri,lyw07/kolibri,DXCanas/kolibri,lyw07/kolibri,DXCanas/kolibri,lyw07/kolibri,jonboiser/kolibri,indirectlylit/kolibri,MingDai/kolibri,benjaoming/kolibri,mrpau/kolibri,mrpau/kolibri,jonboiser/kolibri,learningequality/kolibri,christianmemije/kolibri,DXCanas/kolibri,learningequality/kolibri,learningequality/kolibri,mrpau/kolibri,rtibbles/kolibri,jonboiser/kolibri,rtibbles/kolibri,mrpau/kolibri,rtibbles/kolibri,christianmemije/kolibri,learningequality/kolibri,indirectlylit/kolibri,benjaoming/kolibri,indirectlylit/kolibri,jonboiser/kolibri,MingDai/kolibri
4e39c044c08407c8333ff891815725896a47b70b
app/styles/scaffolding.styl
app/styles/scaffolding.styl
html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-size: $font-size; font-family: $font-family; line-height: 1; color: $text-color; background-color: $base-background-color; } html, body, #root { width: 100vw; height: 100vh; } *[tabindex]:focus { outline: 0 none } ::-webkit-scrollbar { width: 0; height: 0; display: none; } ::-webkit-scrollbar-button { width: 0; height: 0; display: none; } ::-webkit-scrollbar-corner { background-color: transparent; } .CodeMirror-vscrollbar, .CodeMirror-hscrollbar { scrollBar(); } // ::-webkit-scrollbar-thumb { // background-color: rgba(91, 91, 91, 0.50); // } // ::-webkit-scrollbar-thumb:hover { // background-color: rgba(170, 170, 170, 0.80); // }
html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-size: $font-size; font-family: $font-family; line-height: 1; color: $text-color; background-color: $base-background-color; } html, body, #root { width: 100vw; height: 100vh; } *[tabindex]:focus { outline: 0 none } ::-webkit-scrollbar { width: 0; height: 0; display: none; } ::-webkit-scrollbar-button { width: 0; height: 0; display: none; } ::-webkit-scrollbar-corner { background-color: transparent; } .CodeMirror-vscrollbar, .CodeMirror-hscrollbar { pointer-events: auto !important; scrollBar(); } // ::-webkit-scrollbar-thumb { // background-color: rgba(91, 91, 91, 0.50); // } // ::-webkit-scrollbar-thumb:hover { // background-color: rgba(170, 170, 170, 0.80); // }
Fix https://github.com/Coding/WebIDE/issues/162 CodeMirror issues https://github.com/codemirror/CodeMirror/issues/3677
Fix https://github.com/Coding/WebIDE/issues/162 CodeMirror issues https://github.com/codemirror/CodeMirror/issues/3677
Stylus
bsd-3-clause
Coding/WebIDE-Frontend,Coding/WebIDE-Frontend
34c51557b42cf169196417d40b2b572c16fd6058
web_external/stylesheets/body/dataPanel.styl
web_external/stylesheets/body/dataPanel.styl
#m-data-panel text-align center .source-title font-weight bold text-align left margin 1px padding 2px background-color #DFF6E8 border-style none border-width 0px i .icon-folder float left .icon-folder-open float left .source-title:hover background-color #D3E9DC cursor: pointer .dataset padding-left 0px text-align left border 0 margin 2px padding 2px i color #444 .icon-disabled color #f0f0f0 .icon-enabled:hover color #66a cursor pointer .icon-info-circled float right .icon-right-circled float left .icon-trash float right .icon-globe float left .icon-cog float right .icon-table float right &.m-geo-render-error color #ff751a &:hover color #d35400 cursor pointer
#m-data-panel text-align center .source-title font-weight bold text-align left margin 1px padding 2px background-color #DFF6E8 border-style none border-width 0px i .icon-folder float left .icon-folder-open float left .source-title:hover background-color #D3E9DC cursor: pointer .category-title font-weight bold text-align left margin 1px padding 2px background-color #FFBB92 border-style none border-width 0px i .icon-folder float left .icon-folder-open float left .category-title:hover background-color #FC9E67 cursor: pointer .dataset padding-left 0px text-align left border 0 margin 2px padding 2px background-color #FFFFFF i color #444 .icon-disabled color #f0f0f0 .icon-enabled:hover color #66a cursor pointer .icon-info-circled float right .icon-right-circled float left .icon-trash float right .icon-globe float left .icon-cog float right .icon-table float right &.m-geo-render-error color #ff751a &:hover color #d35400 cursor pointer
Add styling for the category-title elements
Add styling for the category-title elements
Stylus
apache-2.0
Kitware/minerva,Kitware/minerva,Kitware/minerva
29f5b85e19be28f06c28a8d34e79b066b47fb0bd
css/index.styl
css/index.styl
@import "../node_modules/nib" @import "./common" @import "./layout" @import "./classifier"
@import "../node_modules/nib" @import "../node_modules/zooniverse/src/css/top-bar" @import "../node_modules/zooniverse/src/css/dialog" @import "./common" @import "./layout" @import "./classifier"
Add top bar and dialog styles
Add top bar and dialog styles
Stylus
apache-2.0
zooniverse/Leaves
7e3fb67e73481db1e640118a635c6eb8f0caeef1
app/views/styles/application.styl
app/views/styles/application.styl
// nib is a powerful lib for stylus that provides cross-browser css3 mixins. // No more vendor prefixes. http://visionmedia.github.com/nib/ @import 'nib' // Apply a natural box layout model to all elements. // http://paulirish.com/2012/box-sizing-border-box-ftw/ * box-sizing: border-box body //padding-top 40px padding-bottom 40px // background-color #eee #content margin-top : 60px .form-signin max-width 330px padding 15px margin 0 auto .checkbox font-weight normal label font-size 16px font-weight normal .form-control position relative font-size 16px height auto padding 10px -webkit-box-sizing border-box -moz-box-sizing border-box box-sizing border-box &:focus z-index 2 input[type="text"] margin-bottom -1px border-bottom-left-radius 0 border-bottom-right-radius 0 input[type="password"] margin-bottom 10px border-top-left-radius 0 border-top-right-radius 0 .form-signin .form-signin-heading, .form-signin .checkbox margin-bottom 10px
// nib is a powerful lib for stylus that provides cross-browser css3 mixins. // No more vendor prefixes. http://visionmedia.github.com/nib/ @import 'nib' // Apply a natural box layout model to all elements. // http://paulirish.com/2012/box-sizing-border-box-ftw/ * box-sizing: border-box body //In order to not be hidden by the fixed bootstrap padding-top 70px #content margin-top : 60px .form-signin max-width 330px padding 15px margin 0 auto .checkbox font-weight normal label font-size 16px font-weight normal .form-control position relative font-size 16px height auto padding 10px -webkit-box-sizing border-box -moz-box-sizing border-box box-sizing border-box &:focus z-index 2 input[type="text"] margin-bottom -1px border-bottom-left-radius 0 border-bottom-right-radius 0 input[type="password"] margin-bottom 10px border-top-left-radius 0 border-top-right-radius 0 .form-signin .form-signin-heading, .form-signin .checkbox margin-bottom 10px
Change the pixel offset for fixed navbar as said in bootstrap doc.
Change the pixel offset for fixed navbar as said in bootstrap doc.
Stylus
mit
KleeGroup/front-end-spa,KleeGroup/front-end-spa,pierr/front-end-spa,pierr/front-end-spa
c2dc0bed6b18e4425b460f4effb3c407f6db7b47
src/components/payment-form/payment-form.styl
src/components/payment-form/payment-form.styl
.payment-form .user-avatar width: $input-height-base float: left .user-display-name margin-left: $input-height-base + $grid-gutter-width line-height: $input-height-base &-amount-input position: relative display: inline-block input display: inline-block width: 120px margin-right: 10px padding-left: 25px &-currency position: absolute content: '$' top: 6px left: 10px color: $gray-light z-index: 2 .control-label float: left width: $thumbnail-width text-align: right line-height: $input-height-base .form-group clear: left .form-group-control @media $media-sm-up margin-left: $thumbnail-width + $grid-gutter-width .form-errors @media $media-sm-up margin-left: $thumbnail-width + $grid-gutter-width .payment-methods text-align: center @media $media-sm-up text-align: left margin-left: $thumbnail-width + $grid-gutter-width
.payment-form .user-avatar width: $input-height-base float: left .user-display-name margin-left: $input-height-base + $grid-gutter-width line-height: $input-height-base &-amount-input position: relative display: inline-block input display: inline-block width: 120px margin-right: 10px padding-left: 25px &-currency position: absolute content: '$' top: 6px left: 10px color: $gray-light z-index: 2 .control-label float: left width: $thumbnail-width text-align: right line-height: $input-height-base .form-group clear: left .form-group-control margin-left: $thumbnail-width + $grid-gutter-width .form-errors margin-left: $thumbnail-width + $grid-gutter-width .payment-methods text-align: left margin-left: $thumbnail-width + $grid-gutter-width
Fix payment form on small sizes.
Fix payment form on small sizes.
Stylus
mit
gamejolt/widgets,gamejolt/widgets,gamejolt/widgets
39a0a31b55c3af317871ba1860092ecd4940ed77
SingularityUI/app/styles/searchInput.styl
SingularityUI/app/styles/searchInput.styl
section input[type="search"][required] font-size 1.75em height auto padding .5rem margin-bottom 1rem line-height 1.5em input[type="search"] height 1.75rem border 0 font-family inherit font-size 1.17em padding-left .52rem margin 0 color inherit opacity .5 width 50% background rgba(0, 0, 0, .1) margin-bottom 4px width 100% font-weight bold &::-webkit-search-cancel-button:after line-height 1.8rem font-weight normal &:focus background rgba(0, 0, 0, .05) opacity 1 outline none
section input[type="search"][required] font-size 1.75em height auto padding .5rem margin-bottom 1rem line-height 1.5em &:focus padding-right: 2.5rem input[type="search"] height 1.75rem border 0 font-family inherit font-size 1.17em padding-left .52rem margin 0 color inherit opacity .5 width 50% background rgba(0, 0, 0, .1) margin-bottom 4px width 100% font-weight bold &::-webkit-search-cancel-button:after line-height 1.8rem font-weight normal &:focus background rgba(0, 0, 0, .05) opacity 1 outline none
Make sure search input × button has enough padding when the search input is focused
Make sure search input × button has enough padding when the search input is focused
Stylus
apache-2.0
nvoron23/Singularity,acbellini/Singularity,nvoron23/Singularity,calebTomlinson/Singularity,mjball/Singularity,stevenschlansker/Singularity,calebTomlinson/Singularity,hs-jenkins-bot/Singularity,mjball/Singularity,hs-jenkins-bot/Singularity,evertrue/Singularity,grepsr/Singularity,tejasmanohar/Singularity,hs-jenkins-bot/Singularity,grepsr/Singularity,andrhamm/Singularity,evertrue/Singularity,calebTomlinson/Singularity,nvoron23/Singularity,nvoron23/Singularity,andrhamm/Singularity,acbellini/Singularity,acbellini/Singularity,stevenschlansker/Singularity,calebTomlinson/Singularity,stevenschlansker/Singularity,tejasmanohar/Singularity,acbellini/Singularity,acbellini/Singularity,evertrue/Singularity,acbellini/Singularity,grepsr/Singularity,tejasmanohar/Singularity,nvoron23/Singularity,evertrue/Singularity,andrhamm/Singularity,stevenschlansker/Singularity,grepsr/Singularity,calebTomlinson/Singularity,stevenschlansker/Singularity,mjball/Singularity,tejasmanohar/Singularity,hs-jenkins-bot/Singularity,HubSpot/Singularity,hs-jenkins-bot/Singularity,HubSpot/Singularity,grepsr/Singularity,andrhamm/Singularity,mjball/Singularity,stevenschlansker/Singularity,nvoron23/Singularity,calebTomlinson/Singularity,grepsr/Singularity,evertrue/Singularity,HubSpot/Singularity,andrhamm/Singularity,HubSpot/Singularity,tejasmanohar/Singularity,mjball/Singularity,tejasmanohar/Singularity,HubSpot/Singularity,evertrue/Singularity
3e26582af5314ef4da4a51700681557d3c560847
static/src/styles/landing/LandingAbout.styl
static/src/styles/landing/LandingAbout.styl
.LandingAbout__section { padding: grid(4); } @media screen and (min-width: 700px) { .LandingAbout__section { display: flex; } .LandingAbout__section:nth-child(even) .LandingAbout__imageContainer { order: 10; } .LandingAbout__imageContainer, .LandingAbout__text { padding: grid(5); flex:1; } } .LandingAbout__image { width: 100%; } .LandingAbout__text { flex: 1; } .LandingAbout__headline { Text__headerScale(3); margin-top: grid(2); margin-bottom: grid(4); font-family: $Text__monospacedFont; font-weight: 800; color: #792359; line-height: 1.4em; } @media screen and (max-width: 900px) { .LandingAbout__headline { Text__headerScale(2); } }
.LandingAbout__section { padding: grid(4); } @media screen and (min-width: 700px) { .LandingAbout__section { display: flex; } .LandingAbout__section:nth-child(even) .LandingAbout__imageContainer { order: 10; } .LandingAbout__imageContainer, .LandingAbout__text { padding: grid(5); flex:1; } } .LandingAbout__image { width: 100%; } .LandingAbout__text { flex: 1; } .LandingAbout__headline { Text__headerScale(3); margin-top: grid(3); margin-bottom: grid(4); font-family: $Text__monospacedFont; font-weight: 800; color: #792359; line-height: 1.4em; } @media screen and (max-width: 900px) { .LandingAbout__headline { Text__headerScale(2); } }
Add more margin above headers
Add more margin above headers
Stylus
mit
hackersatcambridge/hac-website,hackersatcambridge/hac-website,moosichu/hac-website,moosichu/hac-website
b92f8b4e1cae586c8f59f0cf06acbf64d25b286d
app/assets/stylesheets/modules/_overview.styl
app/assets/stylesheets/modules/_overview.styl
.overview .primary +above(desktop) col(0.674, gutter: 1.8) .sidebar input width 100% +above(desktop) col(1/3) .section-header display flex margin-bottom 8px h3 margin-right 23% .controls position relative flex 1 0 auto .milestones .module__data & > p color bayoux margin-bottom 8px hr margin 16px 0 8px 0 &.completed opacity 0.5 .markdown color body-color .section-header:last-child margin-bottom 0 hr display none
.overview .primary +above(desktop) col(0.674, gutter: 1.8) .sidebar input width 100% +above(desktop) col(1/3) .section-header display flex margin-bottom 8px h3 margin-right 20px .controls position relative flex 1 0 auto .milestones .module__data & > p color bayoux margin-bottom 8px hr margin 16px 0 8px 0 &.completed opacity 0.5 .markdown color body-color .section-header:last-child margin-bottom 0 hr display none
Use px margin now that parent is flex
Use px margin now that parent is flex
Stylus
mit
sejalkhatri/WikiEduDashboard,feelfreelinux/WikiEduDashboard,alpha721/WikiEduDashboard,MusikAnimal/WikiEduDashboard,KarmaHater/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,Wowu/WikiEduDashboard,KarmaHater/WikiEduDashboard,sejalkhatri/WikiEduDashboard,MusikAnimal/WikiEduDashboard,MusikAnimal/WikiEduDashboard,alpha721/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,majakomel/WikiEduDashboard,Wowu/WikiEduDashboard,MusikAnimal/WikiEduDashboard,alpha721/WikiEduDashboard,alpha721/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,Wowu/WikiEduDashboard,feelfreelinux/WikiEduDashboard,sejalkhatri/WikiEduDashboard,KarmaHater/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,Wowu/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,majakomel/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard
a49199f0500449925903c301035de02a2a0f4b9c
stylus/playground/playground.styl
stylus/playground/playground.styl
.playground-item { margin-right: 1.05rem; float: left; width: 45%; margin-top: 2rem; transform(scale(0)); &:nth-child(2n+2){ margin-right:0; } h3 { color: #009b3a; margin-bottom: 0; } .credits { margin-bottom: 1rem; } .image-box { float: left; width: 35%; margin-right: 1rem; transition(all ease-out .5s); &:hover { transform(scale(0.95)); } } figcaption { overflow: hidden; float: none; } a:hover { h3, h6 { box-shadow: 0 3px 0 $green; } } } for number in (1..12) .playground-item:nth-child({number}) animation(scaleIn 1s cubic-bezier(0.42, 0, 0.46, 1.28) (0.2 * number)s) animation-fill-mode(forwards);
.playground-item:nth-child(2n+1) { clear: both; } .playground-item { margin-right: 1.05rem; float: left; width: 45%; margin-top: 2rem; transform(scale(0)); &:nth-child(2n+2){ margin-right:0; } h3 { color: #009b3a; margin-bottom: 0; } .credits { margin-bottom: 1rem; } .image-box { float: left; width: 35%; margin-right: 1rem; transition(all ease-out .5s); &:hover { transform(scale(0.95)); } } figcaption { overflow: hidden; float: none; } a:hover { h3, h6 { box-shadow: 0 3px 0 $green; } } } for number in (1..12) .playground-item:nth-child({number}) animation(scaleIn 1s cubic-bezier(0.42, 0, 0.46, 1.28) (0.2 * number)s) animation-fill-mode(forwards);
Remove float in box when's nth-child(2n+1)
Remove float in box when's nth-child(2n+1)
Stylus
mit
css-brasil/css-brasil,css-brasil/css-brasil
aee9f271e78102f6385774c23ed0c302731efc76
src/web/styles/vendor.styl
src/web/styles/vendor.styl
// @stylint off // Normalize CSS @import url("~normalize.css/normalize.css"); // Bootstrap @import url("~bootstrap/dist/css/bootstrap.css"); // rc-slider @import url("~rc-slider/assets/index.css"); // react-select @import url("~react-select/dist/react-select.css"); // @stylint on // react-virtualized @import "react-virtualized"; // font-awesome @import "font-awesome"; // rc-switch @import "rc-switch";
// @stylint off // Normalize CSS @import url("~normalize.css/normalize.css"); // Bootstrap @import url("~bootstrap/dist/css/bootstrap.css"); // rc-slider @import url("~rc-slider/assets/index.css"); // react-select @import url("~react-select/dist/react-select.css"); // @stylint on // react-virtualized @import "react-virtualized"; // font-awesome @import "font-awesome"; // rc-switch @import "rc-switch"; // font-awesome .fa { font-size: 14px; // Defaults to 14px }
Set default font size to 14px for font awesome icons
Set default font size to 14px for font awesome icons
Stylus
mit
cheton/cnc,cheton/cnc.js,cheton/cnc.js,cncjs/cncjs,cheton/piduino-grbl,cheton/piduino-grbl,cheton/cnc,cheton/cnc.js,cncjs/cncjs,cheton/piduino-grbl,cncjs/cncjs,cheton/cnc
2faa0d67f357b9c6119ccb9921d6dae0d0cb5b23
src/app/components/game/list/list-common.styl
src/app/components/game/list/list-common.styl
@require '~styles/variables' @require '~styles-lib/mixins' $game-list-item-thumb-width = 145px .game-list-item display: flex margin-bottom: $line-height-computed .-thumb display: block flex: none width: 50% min-width: 145px max-width: 200px margin-right: 10px .-meta flex: auto .-spacing display: block margin-top: 3px margin-bottom: 3px .-title font-weight: bold .-dev text-overflow() font-size: $font-size-small .-followers text-overflow() font-size: $font-size-small
@require '~styles/variables' @require '~styles-lib/mixins' $game-list-item-thumb-width = 145px .game-list-item display: flex margin-bottom: $line-height-computed .-thumb display: block flex: none width: 45% max-width: 200px margin-right: 10px .-meta flex: auto .-spacing display: block margin-top: 3px margin-bottom: 3px .-title font-weight: bold .-dev text-overflow() font-size: $font-size-small .-followers text-overflow() font-size: $font-size-small
Allow the thumbnail to get smaller in game-list component.
Allow the thumbnail to get smaller in game-list component. It was too large on really squished screens.
Stylus
mit
gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt,gamejolt/gamejolt
f9e58b748d206757931a37511d4a0de9399cc10c
_base.styl
_base.styl
@import url('http://fonts.googleapis.com/css?family=Ubuntu') text-decoration-line() -webkit-text-decoration-line arguments -moz-text-decoration-line arguments text-decoration-line arguments text-decoration-style() -webkit-text-decoration-style arguments -moz-text-decoration-style arguments text-decoration-style arguments body html font-family 'Ubuntu', sans-serif font-size 1em a a:visited text-decoration-line underline text-decoration-style dotted a:focus a:hover text-decoration-line underline text-decoration-style solid p line-height 1.6em margin-bottom 1.6em h1 h2 h3 h4 h5 h6 font-weight normal h1 font-size 3em h2 font-size 2.4em h3 font-size 1.8em h4 font-size 1.6em h5 font-size 1.2em h6 font-size 1em ol ul padding-left 1.6em li margin-bottom 1em li > p margin-bottom 0 hr margin-top 2em .container margin 0 auto max-width 36em
@import url('http://fonts.googleapis.com/css?family=Ubuntu') text-decoration-line() -webkit-text-decoration-line arguments -moz-text-decoration-line arguments text-decoration-line arguments text-decoration-style() -webkit-text-decoration-style arguments -moz-text-decoration-style arguments text-decoration-style arguments body html font-family 'Ubuntu', sans-serif font-size 1em a a:visited text-decoration-line underline text-decoration-style dotted a:focus a:hover text-decoration-line underline text-decoration-style solid p line-height 1.6em margin-bottom 1.6em h1 h2 h3 h4 h5 h6 font-weight normal h1 font-size 3em h2 font-size 2.4em h3 font-size 1.8em h4 font-size 1.6em h5 font-size 1.2em h6 font-size 1em ol ul padding-left 1.6em li margin-bottom 1em li > p margin-bottom 0 hr margin-top 2em .container margin 0 auto max-width 36em input label display block
Set input and label to block display
Set input and label to block display
Stylus
mit
MattMS/css.mattms.info
0c785547446166d051e9d0b6e02a253d10f294e2
source/static/styles/core/typography/headings.styl
source/static/styles/core/typography/headings.styl
h1 h2 h3 h4 h5 h6 font-family $heading-font-family font-weight $heading-font-weight margin $base-line-height 0 0.5em line-height normal a & &:visited color inherit h1 font-size 2.25em h2 font-size 2em h3 font-size 1.75em h4 font-size 1.5em h5 font-size 1.25em h6 font-size 1em
h1 h2 h3 h4 h5 h6 font-family $heading-font-family font-weight $heading-font-weight margin $base-line-height 0 0.5em line-height normal a & &:visited color inherit &:first-child margin-top 0 &:last-child margin-bottom 0 h1 font-size 2.25em h2 font-size 2em h3 font-size 1.75em h4 font-size 1.5em h5 font-size 1.25em h6 font-size 1em
Remove spaces for first and last heading
Remove spaces for first and last heading
Stylus
mit
bkzhn/gulp-front,Zoxon/gulp-front,bkzhn/gulp-front,Zoxon/gulp-front
b957fd4b0d9e71b71c733e3726e04ac83db6aebf
src/drive/styles/filenameinput.styl
src/drive/styles/filenameinput.styl
@require 'components/forms.styl' @require 'settings/palette.styl' .fil-file-name-input @extend $form-text input[type=text] width 100% padding .375rem &:focus background-color var(--white)
@require 'components/forms.styl' @require 'settings/palette.styl' .fil-file-name-input @extend $form-text display table-cell width 100% input[type=text] width 100% padding .375rem &:focus background-color var(--white)
Make the input takes 100% of the width
Fix: Make the input takes 100% of the width
Stylus
agpl-3.0
nono/cozy-files-v3,nono/cozy-files-v3,cozy/cozy-files-v3,nono/cozy-files-v3,cozy/cozy-files-v3,cozy/cozy-files-v3,nono/cozy-files-v3,cozy/cozy-files-v3
bdf531099cc3701b97ddcb3a8fc352c2b678f87e
components/connect_v2/components/create/index.styl
components/connect_v2/components/create/index.styl
.Connect__create display none position relative line-height 1 padding input-padding border 1px solid colors-gray-lighter margin 0 0 -1px 0 text-align center cursor pointer &:hover border 1px solid colors-gray-text z-index 1
.Connect__create display none position relative line-height 1 padding input-padding color colors-channel-private border 1px solid colors-gray-lighter margin 0 0 -1px 0 text-align center cursor pointer &:hover border 1px solid colors-gray-text z-index 1
Create new private channel button reflects private state color
Create new private channel button reflects private state color
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
e2c7c00589d3197a3927c93cf9f56df850609a70
web/src/stylesheets/app/layout.styl
web/src/stylesheets/app/layout.styl
body color #333 font-family sans-serif margin 0 padding 0 i -webkit-user-select none -moz-user-select none -user-select none a cursor pointer .dropdown-menu>li>a padding-left 6px .c-app-header-container background-color #333 height 40px .c-app-body-container position absolute left 0 right 0 top 40px bottom 0 z-index 0
body color #333 font-family sans-serif margin 0 padding 0 i -webkit-user-select none -moz-user-select none -user-select none a cursor pointer .dropdown-menu>li>a padding-left 6px .c-app-header-container background-color #333 height 40px width 100% position fixed top 0 z-index 1000 .c-app-body-container position absolute left 0 right 0 top 40px bottom 0 z-index 0
Use fixed header bar position for convenience on scrolly pages
Use fixed header bar position for convenience on scrolly pages
Stylus
bsd-3-clause
Kitware/cinema,Kitware/cinema,Kitware/cinema,Kitware/cinema
e672279d4a749fd081edcac2ce7eb23592ca6480
src/components/event-bets.module.styl
src/components/event-bets.module.styl
@require 'mixins' .bets-table pad-lr(1em) th font-weight normal button background $grey_brighter; color $red_brighter font-family inherit font-size inherit font-weight bold letter-spacing 1px; line-height 1.6 border 0 min-width 4em pad(0) cursor pointer outline($red, 2px) &:active background-color #FFF
@require 'mixins' .bets-table pad-lr(1em) th font-weight normal button background $grey_brighter; color $red_brighter font-family inherit font-size inherit font-weight bold letter-spacing 1px; line-height 1.6 border 0 min-width 4em pad(0) cursor pointer outline($red, 2px) &:active background-color #FFF
Adjust styling of events' buttons: - set style to those buttons only;
Adjust styling of events' buttons: - set style to those buttons only;
Stylus
mit
LuisLoureiro/placard-wrapper
8e4fa92e20a8a14483a3d00821daeb07ce25b992
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:after display none .navbar-auth__avatar height 2.5rem border-radius 3px border 1px solid ($brand-primary + 20%) .navbar-auth__dropdown-toggle padding-right 0 !important .navbar-guest padding-right 0 !important // // 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
@import "nodeca.core/client/common/_variables" // Hide default caret from .dropdown-toggle .navbar-auth__dropdown-toggle:after display none .navbar-auth__avatar height 2.5rem border-radius 3px border 1px solid ($brand-primary + 20%) .navbar-auth__dropdown-toggle padding-right 0 !important .navbar-guest padding-right 0 !important // // Tweak top/bottom padding for mobile and desktop toolbars // .navbar-auth__dropdown-toggle padding-bottom 0 !important @media (min-width: $grid-breakpoints.md) .navbar-auth__dropdown-toggle padding-top 0 !important
Fix breakpoint for mobile screens
Fix breakpoint for mobile screens
Stylus
mit
nodeca/nodeca.users
2a8d613e6101eba9ca85928c4323ed82d45240e7
components/channel_block_group/stylesheets/index.styl
components/channel_block_group/stylesheets/index.styl
.ChannelBlockGroup width 100% &__inner margin 0 auto display flex justify-content flex-start &__divider border-top 1px solid bordergray margin 2em auto height 0 for i in (1..5) @media (min-width:(block_width_mar * i) + 20) and (max-width:(block_width_mar * (i + 1)) + 20) &__inner width (block_width_mar * i) &__divider width (block_width_mar * i) - 20 .Block:nth-of-type(1n+{i+1}) display none +mobile() &__divider border-color transparent margin 0.5em auto .ChannelBlockGroup:first-child .ChannelBlockGroup__divider margin-top 0
.ChannelBlockGroup width 100% &__inner margin 0 auto display flex justify-content flex-start &__divider border-top 1px solid bordergray margin 2em auto height 0 for i in (1..8) @media (min-width:(block_width_mar * i) + 20) and (max-width:(block_width_mar * (i + 1)) + 20) &__inner width (block_width_mar * i) &__divider width (block_width_mar * i) - 20 .Block:nth-of-type(1n+{i+1}) display none +mobile() &__divider border-color transparent margin 0.5em auto .ChannelBlockGroup:first-child .ChannelBlockGroup__divider margin-top 0
Increase width for channel block group
Increase width for channel block group
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
473dc1dab14003405286924386e0ee7d7753f640
components/logged_out_nav/components/menu/index.styl
components/logged_out_nav/components/menu/index.styl
.LoggedOutMenu position absolute top 2em left 1em 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 &__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
Add padding to menu to line text up with logo
Add padding to menu to line text up with logo
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
974ea76f069ae9c548579a6b8d0442a84f3cb5e8
css/secondary-page.styl
css/secondary-page.styl
.secondary-page font-size: 10px line-height: 20px .secondary-page-side-bar flex: 0 1 190px nav align-items: flex-start display: inline-flex flex-direction: column flex-wrap: wrap margin-top: 0.75em @media screen and (max-width: 400px) flex-direction: row .side-bar-button color: #5a5a5a font-size: 14px margin: 6.75px 6.75px 20.25px outline: none &.active font-weight: 700 .markdown, .secondary-page-copy h1, h2, h3 color: #5a5a5a h2 font-size: 2.4em line-height: 26px h3 font-size: 1.4em p, li color: #989898 margin: 1em 0 max-width: 700px ul > li font-size: 14px img max-width: 100% pre background-color: #E8E8E8 border-radius: 4px padding: 1em .centered-grid margin: 0 auto max-width: 960px padding: 40px 3vw
.secondary-page font-size: 10px line-height: 20px .secondary-page-side-bar flex: 0 1 190px nav align-items: flex-start display: inline-flex flex-direction: column flex-wrap: wrap margin-top: 0.75em @media screen and (max-width: 400px) flex-direction: row .side-bar-button color: #5a5a5a font-size: 14px margin: 6.75px 6.75px 20.25px outline: none &.active font-weight: 700 .markdown, .secondary-page-copy h1, h2, h3 color: #5a5a5a h2 font-size: 2.4em line-height: 26px h3 font-size: 1.4em p, li color: #989898 margin: 1em 0 max-width: 700px font-size: 14px ul > li font-size: 14px img max-width: 100% pre background-color: #E8E8E8 border-radius: 4px padding: 1em .centered-grid margin: 0 auto max-width: 960px padding: 40px 3vw
Increase font size on secondary pages
Increase font size on secondary pages - Closes #1287 - Closes #1328
Stylus
apache-2.0
camallen/Panoptes-Front-End,alexbfree/Panoptes-Front-End,parrish/Panoptes-Front-End,parrish/Panoptes-Front-End,camallen/Panoptes-Front-End,zooniverse/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,parrish/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,edpaget/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,edpaget/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,alexbfree/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,camallen/Panoptes-Front-End,edpaget/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,alexbfree/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End
4003e064cb7b540811e8bd056a1a2eecd26cb3ef
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 .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
Add bottom space to current weather
Add bottom space to current weather
Stylus
mit
IvaPetkova/My-HTML-Projects
6ec0acd65974da4f1c90f6a3bdc50186b3aca6fd
client/admin/forum/section/index.styl
client/admin/forum/section/index.styl
.section-list list-style: none .section-control margin: 3px 0px padding: 5px background-color: #EFEFEF border: solid 1px #EAEAEA border-radius: 5px &:hover background-color: #E2E2E2 .section-drag-mark margin: 5px font-size: 18px color: #808080 user-select: none cursor: move .section-moderators-list width: 200px text-align: right .section-delete-button width: 100px text-align: center .section-title margin: 5px 0px 5px 10px font-size: 12pt .section-placeholder margin-top: 3px margin-bottom: 3px height: 25px background-color: #FFFB91 border: solid 2px #FFF947 border-radius: 5px .section-children margin-left: 50px .section-children-placeholder:empty @extend .section-placeholder background-color: #FAFAFA border-style: dashed border-color: #E8E8E8
.section-list list-style: none .section-control margin: 3px 0px padding: 5px background-color: #EFEFEF border: solid 1px #EAEAEA border-radius: 5px &:hover background-color: #E2E2E2 .section-drag-mark color: #808080 user-select: none cursor: move .section-moderators-list width: 200px text-align: right .section-delete-button width: 100px text-align: center .section-placeholder margin-top: 3px margin-bottom: 3px height: 25px background-color: #FFFB91 border: solid 2px #FFF947 border-radius: 5px .section-children margin-left: 50px .section-children-placeholder:empty @extend .section-placeholder background-color: #FAFAFA border-style: dashed border-color: #E8E8E8
Clean up styles at section management page.
Clean up styles at section management page.
Stylus
mit
nodeca/nodeca.forum
d9d44b093eb4948050d0623668f9001929d721e8
web_external/Datasets/uploadWidget.styl
web_external/Datasets/uploadWidget.styl
.isic-upload-description-container margin-top 10px .isic-upload-container margin 5px 0px h4 font-size 14px font-weight bold font-color #eee .g-drop-zone width 100% text-align center height 60px line-height 60px box-shadow 0 2px 5px rgba(0,0,0,0.2) background-color #5cb897 border 1px solid #4a8 height 30px line-height 100% padding 7px 22px 5px 17px font-size 14px font-weight normal &:hover background-color #6cc8a7 background linear-gradient(top,#6cc8a7 50%,#5cb897 100%) &:active background #6cc8a7 box-shadow inset 0 3px 5px rgba(0,0,0,0.125); &.g-dropzone-show background white border 2px dashed #bbb box-shadow none padding 0 .isic-upload-widget-container padding 10px 0px text-align left display inline-block max-width 370px .g-dialog-subtitle display none .isic-upload-reset-container padding 10px 0px .isic-upload-list padding-bottom 10px
.isic-upload-description-container margin-top 10px .isic-upload-container margin 5px 0px h4 font-size 14px font-weight bold font-color #eee .g-drop-zone width 40% text-align center height 60px line-height 60px box-shadow 0 2px 5px rgba(0,0,0,0.2) background-color #5cb897 border 1px solid #4a8 height 30px line-height 100% padding 7px 22px 5px 17px font-size 14px font-weight normal &:hover background-color #6cc8a7 background linear-gradient(top,#6cc8a7 50%,#5cb897 100%) &:active background #6cc8a7 box-shadow inset 0 3px 5px rgba(0,0,0,0.125); &.g-dropzone-show background white border 2px dashed #bbb box-shadow none height 60px // Center content horizontally and vertically display flex align-items center justify-content center .isic-upload-widget-container padding 10px 0px text-align left .g-dialog-subtitle display none .isic-upload-reset-container padding 10px 0px .isic-upload-list padding-bottom 10px
Improve upload widget drop zone style
Improve upload widget drop zone style This commit improves the style applied to the upload widget, especially with regards to drag and drop. The drop zone is taller and wider. This makes it easier to drag and drop to upload a file. Additionally, the width of "Browse or drop files" button no longer depends on the width of the text below (which changes after uploading a file).
Stylus
apache-2.0
ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive,ImageMarkup/isic-archive
f2ef71b9d0637effbc7f7093d56cbf8379418813
app/stylesheets/collection.styl
app/stylesheets/collection.styl
//** The Collection Summary page styles. **// .qi-subject-list margin-bottom 1em border 1px solid SlateGray border-radius 0.4em padding-top 0.4em
//** The Collection List and Detail page styles. **// .qi-collection-name font-size larger
Remove unused style. Add Collection List name style.
Remove unused style. Add Collection List name style.
Stylus
bsd-2-clause
ohsu-qin/qiprofile,ohsu-qin/qiprofile,ohsu-qin/qiprofile,ohsu-qin/qiprofile
34b1f2c0eddbcc049c0cfd2f3805059b5747d165
assets/style/common.styl
assets/style/common.styl
.mongochem-max-height height 100% .mongochem-fifty height 50% width 50% .mongochem-logo height 40px width 40px .mongochem-no-scroll overflow: hidden md-toolbar .md-menu.mongochem-menu margin inherit #mongochem-3dmol.mongochem-frequency-overlay canvas margin-top: -316px .bar rect fill: #7986CB shape-rendering: crispEdges //md-content[mongochem-frequency-histogram="mongochem-frequency-histogram"][mongochem-animating="false"] .bar rect:hover // fill: #3F51B5 .bar.selected rect fill: #3F51B5 .axis path, .axis line fill: none stroke: #000 shape-rendering: crispEdges #mongochem-select-mode, #mongochem-select-experimental, #mongochem-select-molecule margin: 0px 0px 0px 0px .mongochem-no-select -webkit-touch-callout: none -webkit-user-select: none -khtml-user-select: none -moz-user-select: none -ms-user-select: none user-select: none
.mongochem-max-height height 100% .mongochem-fifty height 50% width 50% .mongochem-logo height 40px width 40px .mongochem-no-scroll overflow: hidden md-toolbar .md-menu.mongochem-menu margin inherit #mongochem-3dmol.mongochem-frequency-overlay canvas margin-top: -316px .bar rect fill: #7986CB shape-rendering: crispEdges //md-content[mongochem-frequency-histogram="mongochem-frequency-histogram"][mongochem-animating="false"] .bar rect:hover // fill: #3F51B5 .bar.selected rect fill: #3F51B5 .axis path, .axis line fill: none stroke: #000 shape-rendering: crispEdges #mongochem-select-mode, #mongochem-select-experimental, #mongochem-select-molecule, #mongochem-select-calculation margin: 0px 0px 0px 0px .mongochem-no-select -webkit-touch-callout: none -webkit-user-select: none -khtml-user-select: none -moz-user-select: none -ms-user-select: none user-select: none
Add styling to combo box
Add styling to combo box
Stylus
bsd-3-clause
OpenChemistry/mongochemclient,OpenChemistry/mongochemclient
127c9b9b116cd61cd31457f79191d429811353b7
src/table-fixed-header.styl
src/table-fixed-header.styl
@import "variables"; .scroll-header, .scroll-footer { :global { .rc-table-placeholder { display: none; } } } .scroll-header { border-bottom: 2px solid $table-header-border-bottom-color :global { .rc-table-content { overflow: hidden; } } .table { table { table-layout: fixed; width: 100%; thead { th { border-top: 0; border-bottom: 0; &.th-scroll-bar { border-left: 0; padding: 0; } } } } } + .scroll-body { overflow: auto; thead { border-top: 0; border-bottom: 0; th { border-top: 0; border-bottom: 0; } } tbody > tr:first-child > td { border-top: 0; } .loader-overlay { top: 0; } } }
@import "variables"; .scroll-header, .scroll-footer { :global { .rc-table-placeholder { display: none; } } } .scroll-footer { :global { .rc-table-body { display: none; } .rc-table-footer :local(.table-toolbar) { border-top: 1px solid #ddd; border-bottom: none; } } } .scroll-header { border-bottom: 2px solid $table-header-border-bottom-color :global { .rc-table-content { overflow: hidden; } } .table { table { table-layout: fixed; width: 100%; thead { th { border-top: 0; border-bottom: 0; &.th-scroll-bar { border-left: 0; padding: 0; } } } } } + .scroll-body { overflow: auto; thead { border-top: 0; border-bottom: 0; th { border-top: 0; border-bottom: 0; } } tbody > tr:first-child > td { border-top: 0; } .loader-overlay { top: 0; } } }
Adjust table footer style when footer is fixed.
Adjust table footer style when footer is fixed.
Stylus
mit
trendmicro-frontend/react-table
7b33b58f1239cd4fd46e81346b6ae1ed9bdd2ef0
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 iframe box-shadow 4px 4px 4px colors-gray-background hr border 1px solid colors-gray-border margin 2.5em 2em
.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% vertical-align bottom border 1px solid colors-gray-border margin 2em auto iframe box-shadow 4px 4px 4px colors-gray-background h2 margin-top 4em hr border 1px solid colors-gray-border margin 3em 2em
Fix margins around images and iframes
Fix margins around images and iframes
Stylus
mit
aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell,aredotna/ervell
bd7bbb14062b4e81e7f570043eb5396230820709
src/styles/konnectorInstall.styl
src/styles/konnectorInstall.styl
@require 'tools/mixins.styl' @require 'settings/palette.styl' :local // @stylint ignore .col-account-connection-content padding 0 2rem .col-account-connection-fetching padding 0 0 2em position relative > div position relative // override default Spinner absolute position transform translateX(-50%) translateY(0) .col-account-connection-security display flex align-items top margin-bottom .5rem margin-top 1.5rem .col-account-connection-security svg max-height rem(24) max-width rem(24) float left margin-right rem(8) .col-account-connection-form margin 0 rem(8) 0 0 +small-screen() .col-account-connection-content display block width 100% .col-account-connection-editor text-align center color coolGrey margin-top 0 margin-bottom 0 font-size .9em
@require 'tools/mixins.styl' @require 'settings/breakpoints.styl' @require 'settings/palette.styl' :local // @stylint ignore .col-account-connection-content padding 0 2rem +tiny-screen() padding 0 .col-account-connection-fetching padding 0 0 2em position relative > div position relative // override default Spinner absolute position transform translateX(-50%) translateY(0) .col-account-connection-security display flex align-items top margin-bottom .5rem margin-top 1.5rem .col-account-connection-security svg max-height rem(24) max-width rem(24) float left margin-right rem(8) .col-account-connection-form margin 0 rem(8) 0 0 .col-account-connection-editor text-align center color coolGrey margin-top 0 margin-bottom 0 font-size .9em
Remove account form padding on small screens 💄
feat: Remove account form padding on small screens 💄
Stylus
agpl-3.0
cozy/cozy-home,cozy/cozy-home,CPatchane/cozy-collect,CPatchane/cozy-collect,gregorylegarec/cozy-collect,gregorylegarec/cozy-collect,gregorylegarec/cozy-collect,cozy/cozy-home
a7a0a072a9cc176a104cb807ed69d5d66b370d4c
public/styles/stylus/module.styl
public/styles/stylus/module.styl
// module.styl // .header .header__logo max-width 100% // .gallery // .gallery__image // .gallery__image--selected // .search // .search__field // .search__field--warning // .search__field--success // .search__button // .detail .detail__image display block float left width 45% max-width 50% margin 20px border-bottom 2px solid dark-purple border-radius 2px box-shadow 0 4px 2px -2px rgba(0,0,0,0.4) .detail__content background-color off-white width 45% max-width 50% margin 20px padding 20px border-bottom 2px solid dark-purple border-radius 2px 2px 4px 4px box-shadow 0 4px 2px -2px rgba(0,0,0,0.4)
// module.styl // .header .header__logo max-width 100% .gallery //.gallery__image // width 25% //.gallery__image--w2 // width 50% // .search // .search__field // .search__field--warning // .search__field--success // .search__button // .detail .detail__image display block float left width 45% max-width 50% margin 20px border-bottom 2px solid dark-purple border-radius 2px box-shadow 0 4px 2px -2px rgba(0,0,0,0.4) .detail__content background-color off-white width 45% max-width 50% margin 20px padding 20px border-bottom 2px solid dark-purple border-radius 2px 2px 4px 4px box-shadow 0 4px 2px -2px rgba(0,0,0,0.4)
Add styles for Gallery images
Add styles for Gallery images
Stylus
mit
tylerwalters/maggie-gallery,tylerwalters/maggie-gallery,tylerwalters/maggie-gallery
053414c57e42fb1469bda31a512fa8ab0905fe96
css/tutorial.styl
css/tutorial.styl
.modal-form.tutorial-dialog padding: 0 0 1.5em .tutorial-steps display: flex flex-direction: column max-height: 95vh max-width: 95vw width: 50ch > .step-through-content // TODO: I'd rather the header media not scroll. overflow-y: auto !important // Override swipe library setting. > .step-through-controls text-align: center .media-card.tutorial-step > .media-card-content @extends .content-container .media-card-media display: block max-width: 100% .step-through-direction @extends $reset-button vertical-align: middle .step-through-pips margin: 0 0.4em .step-through-pip cursor: pointer padding: 0.2em 0.4em .step-through-pip-input cursor: pointer position: absolute opacity: 0 .step-through-pip-number border: 0.2em solid border-radius: 50% cursor: pointer display: inline-block height: 0.5em overflow: hidden text-indent: 2em vertical-align: middle width: 0.5em :focus + & box-shadow: 0 0 1px 1px MAIN_HIGHLIGHT :checked + & background: currentColor
.modal-form.tutorial-dialog border-radius: 8px max-width: 400px padding: 0 0 1.5em .tutorial-steps display: flex flex-direction: column max-height: 95vh max-width: 95vw width: 50ch > .step-through-content // TODO: I'd rather the header media not scroll. overflow-y: auto !important // Override swipe library setting. > .step-through-controls text-align: center .media-card.tutorial-step > .media-card-content @extends .content-container .media-card-media display: block max-width: 100% .step-through-direction @extends $reset-button vertical-align: middle .step-through-pips margin: 0 0.4em .step-through-pip cursor: pointer padding: 0.2em 0.4em .step-through-pip-input cursor: pointer position: absolute opacity: 0 .step-through-pip-number border: 0.2em solid border-radius: 50% cursor: pointer display: inline-block height: 0.5em overflow: hidden text-indent: 2em vertical-align: middle width: 0.5em :focus + & box-shadow: 0 0 1px 1px MAIN_HIGHLIGHT :checked + & background: currentColor
Add border radius and max width
Add border radius and max width
Stylus
apache-2.0
parrish/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,parrish/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,alexbfree/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,alexbfree/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,parrish/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,CKrawczyk/Panoptes-Front-End,amyrebecca/Panoptes-Front-End,fmnhExhibits/Panoptes-Front-End,alexbfree/Panoptes-Front-End,mrniaboc/Panoptes-Front-End,zooniverse/Panoptes-Front-End,jelliotartz/Panoptes-Front-End,jelliotartz/Panoptes-Front-End
09d9cdc9fbc2930abe250787a075e2e565f5b06e
src/styl/chat.styl
src/styl/chat.styl
#chat color #353535 .chat_content height 100% padding-top 45px .chat_messages padding 10px padding-bottom 55px height 100% overflow auto .chat_msg font-weight normal padding 10px 0 border-bottom 1px solid #888 &:last-child border-bottom none .chat_user font-family 'montserratbold' margin-right 15px .chat_form position absolute bottom 0 height 45px width 100% .chat_input display block width 100% height 100% padding 3px 50px 3px 10px font-size 1.2em .chat_send position absolute top 0 right 0 padding 0 10px width 50px height 100% background transparent font-size 1.3em
#chat color #353535 .chat_content height 100% padding-top 45px .chat_messages padding 10px padding-bottom 55px height 100% overflow auto .chat_msg font-weight normal padding 10px 0 border-bottom 1px solid #888 &:last-child border-bottom none .chat_user font-family 'montserratbold' margin-right 15px .chat_form position absolute bottom 0 height 45px width 100% -webkit-transform translate3d(0,0,0) // trick to put scrollbar behind form .chat_input display block width 100% height 100% padding 3px 50px 3px 10px font-size 1.2em .chat_send position absolute top 0 right 0 padding 0 10px width 50px height 100% background transparent font-size 1.3em
Put scrollbar behind form in webkit
Put scrollbar behind form in webkit
Stylus
mit
btrent/lichobile,btrent/lichobile,btrent/lichobile,btrent/lichobile,garawaa/lichobile,garawaa/lichobile,garawaa/lichobile
bfe0bc7f9a0f98f0b22854b65b5a8929f326ecdf
src/css/main.styl
src/css/main.styl
.hide display none tr.group, tr.group:hover background-color #ddd !important h1 font-family $miller margin 1em auto text-align center font-weight bold
.hide display none tr.group, tr.group:hover background-color #ddd !important h1 font-family $miller margin 0 auto 1em auto text-align center font-weight bold
Remove vertical space at beginning of page
Remove vertical space at beginning of page
Stylus
mit
BostonGlobe/2015-09-23_mcas-districts,BostonGlobe/2015-09-23_mcas-districts
d634c8bbdc4bde784c8c002b20a196c338f8924c
app/account/styles/_cards-list.styl
app/account/styles/_cards-list.styl
#cards-list-container { padding: 150px 15px 15px 250px; position: relative; z-index: 1; } .cards-list { height: 100%; position: relative; width: 100%; }
#cards-list-container { margin-bottom: 15px; padding: 150px 15px 15px 250px; position: relative; z-index: 1; } .cards-list { height: 100%; position: relative; width: 100%; }
Add bottom margin to cards list.
Add bottom margin to cards list.
Stylus
agpl-3.0
jessamynsmith/boards-web,GetBlimp/boards-web,jessamynsmith/boards-web