mirror of
https://github.com/jgthms/bulma.git
synced 2024-12-12 13:28:30 +00:00
Add control and button border variables
This commit is contained in:
parent
6ec42afb20
commit
a76c16b387
@ -1,9 +1,10 @@
|
|||||||
# Bulma Changelog
|
# Bulma Changelog
|
||||||
|
|
||||||
## 0.6.3
|
## 0.7.0
|
||||||
|
|
||||||
### New features
|
### New features
|
||||||
|
|
||||||
|
* New variables `$control-border-width` and `$button-border-width`
|
||||||
* 🎉 #1624 Add some common photography aspect ratios and portrait ratios
|
* 🎉 #1624 Add some common photography aspect ratios and portrait ratios
|
||||||
* 🎉 #1747 New `$custom-colors` and `$custom-shades` variable for adding your own colors and shades to Bulma's `$colors` and `$shades` maps respectively
|
* 🎉 #1747 New `$custom-colors` and `$custom-shades` variable for adding your own colors and shades to Bulma's `$colors` and `$shades` maps respectively
|
||||||
|
|
||||||
|
@ -21,6 +21,21 @@
|
|||||||
"name": "$button-border-color",
|
"name": "$button-border-color",
|
||||||
"value": "$grey-lighter"
|
"value": "$grey-lighter"
|
||||||
},
|
},
|
||||||
|
"button-border-width": {
|
||||||
|
"id": "button-border-width",
|
||||||
|
"name": "$button-border-width",
|
||||||
|
"value": "$control-border-width"
|
||||||
|
},
|
||||||
|
"button-padding-vertical": {
|
||||||
|
"id": "button-padding-vertical",
|
||||||
|
"name": "$button-padding-vertical",
|
||||||
|
"value": "calc(0.375em - #{$button-border-width})"
|
||||||
|
},
|
||||||
|
"button-padding-horizontal": {
|
||||||
|
"id": "button-padding-horizontal",
|
||||||
|
"name": "$button-padding-horizontal",
|
||||||
|
"value": "0.75em"
|
||||||
|
},
|
||||||
"button-hover-color": {
|
"button-hover-color": {
|
||||||
"id": "button-hover-color",
|
"id": "button-hover-color",
|
||||||
"name": "$button-hover-color",
|
"name": "$button-hover-color",
|
||||||
@ -112,4 +127,4 @@
|
|||||||
"value": "$grey-lighter"
|
"value": "$grey-lighter"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,15 +16,20 @@
|
|||||||
"name": "$control-radius-small",
|
"name": "$control-radius-small",
|
||||||
"value": "$radius-small"
|
"value": "$radius-small"
|
||||||
},
|
},
|
||||||
|
"control-border-width": {
|
||||||
|
"id": "control-border-width",
|
||||||
|
"name": "$control-border-width",
|
||||||
|
"value": "1px"
|
||||||
|
},
|
||||||
"control-padding-vertical": {
|
"control-padding-vertical": {
|
||||||
"id": "control-padding-vertical",
|
"id": "control-padding-vertical",
|
||||||
"name": "$control-padding-vertical",
|
"name": "$control-padding-vertical",
|
||||||
"value": "calc(0.375em - 1px)"
|
"value": "calc(0.375em - #{$control-border-width})"
|
||||||
},
|
},
|
||||||
"control-padding-horizontal": {
|
"control-padding-horizontal": {
|
||||||
"id": "control-padding-horizontal",
|
"id": "control-padding-horizontal",
|
||||||
"name": "$control-padding-horizontal",
|
"name": "$control-padding-horizontal",
|
||||||
"value": "calc(0.625em - 1px)"
|
"value": "calc(0.625em - #{$control-border-width})"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,6 @@ $amazon: #ffd863
|
|||||||
$bleeding-green: #ABF47C
|
$bleeding-green: #ABF47C
|
||||||
$bleeding-red: #CA1F26
|
$bleeding-red: #CA1F26
|
||||||
|
|
||||||
// $custom-colors: ("test": $bootstrap, "alt": ($bleeding-red, "jfoeij"), "debug": (pink, black))
|
|
||||||
|
|
||||||
@import "../bulma"
|
@import "../bulma"
|
||||||
@import "./_sass/highlight"
|
@import "./_sass/highlight"
|
||||||
@import "./_sass/override"
|
@import "./_sass/override"
|
||||||
|
@ -1534,13 +1534,16 @@ a.box:active {
|
|||||||
.button {
|
.button {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-color: #dbdbdb;
|
border-color: #dbdbdb;
|
||||||
|
border-width: 1px;
|
||||||
color: #363636;
|
color: #363636;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
-webkit-box-pack: center;
|
-webkit-box-pack: center;
|
||||||
-ms-flex-pack: center;
|
-ms-flex-pack: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
padding-bottom: calc(0.375em - 1px);
|
||||||
padding-left: 0.75em;
|
padding-left: 0.75em;
|
||||||
padding-right: 0.75em;
|
padding-right: 0.75em;
|
||||||
|
padding-top: calc(0.375em - 1px);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
2
docs/css/bulma-docs.min.css
vendored
2
docs/css/bulma-docs.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,11 @@
|
|||||||
$button-color: $grey-darker !default
|
$button-color: $grey-darker !default
|
||||||
$button-background-color: $white !default
|
$button-background-color: $white !default
|
||||||
|
|
||||||
$button-border-color: $grey-lighter !default
|
$button-border-color: $grey-lighter !default
|
||||||
|
$button-border-width: $control-border-width !default
|
||||||
|
|
||||||
|
$button-padding-vertical: calc(0.375em - #{$button-border-width}) !default
|
||||||
|
$button-padding-horizontal: 0.75em !default
|
||||||
|
|
||||||
$button-hover-color: $link-hover !default
|
$button-hover-color: $link-hover !default
|
||||||
$button-hover-border-color: $link-hover-border !default
|
$button-hover-border-color: $link-hover-border !default
|
||||||
@ -40,11 +45,14 @@ $button-static-border-color: $grey-lighter !default
|
|||||||
+unselectable
|
+unselectable
|
||||||
background-color: $button-background-color
|
background-color: $button-background-color
|
||||||
border-color: $button-border-color
|
border-color: $button-border-color
|
||||||
|
border-width: $button-border-width
|
||||||
color: $button-color
|
color: $button-color
|
||||||
cursor: pointer
|
cursor: pointer
|
||||||
justify-content: center
|
justify-content: center
|
||||||
padding-left: 0.75em
|
padding-bottom: $button-padding-vertical
|
||||||
padding-right: 0.75em
|
padding-left: $button-padding-horizontal
|
||||||
|
padding-right: $button-padding-horizontal
|
||||||
|
padding-top: $button-padding-vertical
|
||||||
text-align: center
|
text-align: center
|
||||||
white-space: nowrap
|
white-space: nowrap
|
||||||
strong
|
strong
|
||||||
@ -57,14 +65,14 @@ $button-static-border-color: $grey-lighter !default
|
|||||||
height: 1.5em
|
height: 1.5em
|
||||||
width: 1.5em
|
width: 1.5em
|
||||||
&:first-child:not(:last-child)
|
&:first-child:not(:last-child)
|
||||||
margin-left: calc(-0.375em - 1px)
|
margin-left: calc(-0.375em - #{$button-border-width})
|
||||||
margin-right: 0.1875em
|
margin-right: 0.1875em
|
||||||
&:last-child:not(:first-child)
|
&:last-child:not(:first-child)
|
||||||
margin-left: 0.1875em
|
margin-left: 0.1875em
|
||||||
margin-right: calc(-0.375em - 1px)
|
margin-right: calc(-0.375em - #{$button-border-width})
|
||||||
&:first-child:last-child
|
&:first-child:last-child
|
||||||
margin-left: calc(-0.375em - 1px)
|
margin-left: calc(-0.375em - #{$button-border-width})
|
||||||
margin-right: calc(-0.375em - 1px)
|
margin-right: calc(-0.375em - #{$button-border-width})
|
||||||
// States
|
// States
|
||||||
&:hover,
|
&:hover,
|
||||||
&.is-hovered
|
&.is-hovered
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
$control-radius: $radius !default
|
$control-radius: $radius !default
|
||||||
$control-radius-small: $radius-small !default
|
$control-radius-small: $radius-small !default
|
||||||
|
|
||||||
$control-padding-vertical: calc(0.375em - 1px) !default
|
$control-border-width: 1px !default
|
||||||
$control-padding-horizontal: calc(0.625em - 1px) !default
|
|
||||||
|
$control-padding-vertical: calc(0.375em - #{$control-border-width}) !default
|
||||||
|
$control-padding-horizontal: calc(0.625em - #{$control-border-width}) !default
|
||||||
|
|
||||||
%control
|
%control
|
||||||
-moz-appearance: none
|
-moz-appearance: none
|
||||||
-webkit-appearance: none
|
-webkit-appearance: none
|
||||||
align-items: center
|
align-items: center
|
||||||
border: 1px solid transparent
|
border: $control-border-width solid transparent
|
||||||
border-radius: $control-radius
|
border-radius: $control-radius
|
||||||
box-shadow: none
|
box-shadow: none
|
||||||
display: inline-flex
|
display: inline-flex
|
||||||
|
Loading…
Reference in New Issue
Block a user