Push 0.0.24

This commit is contained in:
Jeremy Thomas 2016-04-22 20:54:13 +01:00
parent c8e3cbf912
commit 4ed6072d21
8 changed files with 259 additions and 249 deletions

View File

@ -1,5 +1,12 @@
# Bulma Changelog
## 0.0.24
### Updated
* restructured file structure
* added back `inline-flex` for controls and tags
## 0.0.23
### BREAKING

View File

@ -26,7 +26,7 @@ bower install bulma
### CDN
[https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.23/css/bulma.min.css](https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.23/css/bulma.min.css)
[https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.24/css/bulma.min.css](https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.24/css/bulma.min.css)
Feel free to raise an issue or submit a pull request.

View File

@ -1,6 +1,6 @@
{
"name": "bulma",
"version": "0.0.23",
"version": "0.0.24",
"homepage": "http://bulma.io",
"authors": [
"jgthms <bbxdesign@gmail.com>"

489
css/bulma.css vendored
View File

@ -231,6 +231,7 @@ pre {
body {
color: #69707a;
font-size: 1rem;
font-weight: 400;
line-height: 1.428571428571429;
}
@ -274,6 +275,7 @@ small {
strong {
color: #222324;
font-weight: 700;
}
pre {
@ -305,8 +307,8 @@ table th {
color: #222324;
}
.block:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .title:not(:last-child),
.subtitle:not(:last-child), .highlight:not(:last-child), .message:not(:last-child), .navbar:not(:last-child), .tabs:not(:last-child), .box:not(:last-child) {
.block:not(:last-child), .box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .title:not(:last-child),
.subtitle:not(:last-child), .highlight:not(:last-child), .message:not(:last-child), .navbar:not(:last-child), .tabs:not(:last-child) {
margin-bottom: 20px;
}
@ -416,231 +418,6 @@ table th {
user-select: none;
}
.highlight {
background-color: #fdf6e3;
color: #586e75;
}
.highlight .c {
color: #93a1a1;
}
.highlight .err,
.highlight .g {
color: #586e75;
}
.highlight .k {
color: #859900;
}
.highlight .l,
.highlight .n {
color: #586e75;
}
.highlight .o {
color: #859900;
}
.highlight .x {
color: #cb4b16;
}
.highlight .p {
color: #586e75;
}
.highlight .cm {
color: #93a1a1;
}
.highlight .cp {
color: #859900;
}
.highlight .c1 {
color: #93a1a1;
}
.highlight .cs {
color: #859900;
}
.highlight .gd {
color: #2aa198;
}
.highlight .ge {
color: #586e75;
font-style: italic;
}
.highlight .gr {
color: #dc322f;
}
.highlight .gh {
color: #cb4b16;
}
.highlight .gi {
color: #859900;
}
.highlight .go,
.highlight .gp {
color: #586e75;
}
.highlight .gs {
color: #586e75;
font-weight: bold;
}
.highlight .gu {
color: #cb4b16;
}
.highlight .gt {
color: #586e75;
}
.highlight .kc {
color: #cb4b16;
}
.highlight .kd {
color: #268bd2;
}
.highlight .kn,
.highlight .kp {
color: #859900;
}
.highlight .kr {
color: #268bd2;
}
.highlight .kt {
color: #dc322f;
}
.highlight .ld {
color: #586e75;
}
.highlight .m,
.highlight .s {
color: #2aa198;
}
.highlight .na {
color: #B58900;
}
.highlight .nb {
color: #586e75;
}
.highlight .nc {
color: #268bd2;
}
.highlight .no {
color: #cb4b16;
}
.highlight .nd {
color: #268bd2;
}
.highlight .ni,
.highlight .ne {
color: #cb4b16;
}
.highlight .nf {
color: #268bd2;
}
.highlight .nl,
.highlight .nn,
.highlight .nx,
.highlight .py {
color: #586e75;
}
.highlight .nt,
.highlight .nv {
color: #268bd2;
}
.highlight .ow {
color: #859900;
}
.highlight .w {
color: #586e75;
}
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .mo {
color: #2aa198;
}
.highlight .sb {
color: #93a1a1;
}
.highlight .sc {
color: #2aa198;
}
.highlight .sd {
color: #586e75;
}
.highlight .s2 {
color: #2aa198;
}
.highlight .se {
color: #cb4b16;
}
.highlight .sh {
color: #586e75;
}
.highlight .si,
.highlight .sx {
color: #2aa198;
}
.highlight .sr {
color: #dc322f;
}
.highlight .s1,
.highlight .ss {
color: #2aa198;
}
.highlight .bp,
.highlight .vc,
.highlight .vg,
.highlight .vi {
color: #268bd2;
}
.highlight .il {
color: #2aa198;
}
.input, .textarea {
-moz-appearance: none;
-webkit-appearance: none;
@ -1251,6 +1028,22 @@ table th {
top: 8px;
}
.box {
background: white;
border-radius: 5px;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
display: block;
padding: 20px;
}
a.box:hover, a.box:focus {
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #1fc8db;
}
a.box:active {
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px #1fc8db;
}
.button, .pagination a {
-moz-appearance: none;
-webkit-appearance: none;
@ -1662,6 +1455,7 @@ table th {
}
.button.is-link, .pagination a.is-link {
background: transparent;
border-color: transparent;
color: #69707a;
text-decoration: underline;
@ -3910,6 +3704,231 @@ table th {
}
}
.highlight {
background-color: #fdf6e3;
color: #586e75;
}
.highlight .c {
color: #93a1a1;
}
.highlight .err,
.highlight .g {
color: #586e75;
}
.highlight .k {
color: #859900;
}
.highlight .l,
.highlight .n {
color: #586e75;
}
.highlight .o {
color: #859900;
}
.highlight .x {
color: #cb4b16;
}
.highlight .p {
color: #586e75;
}
.highlight .cm {
color: #93a1a1;
}
.highlight .cp {
color: #859900;
}
.highlight .c1 {
color: #93a1a1;
}
.highlight .cs {
color: #859900;
}
.highlight .gd {
color: #2aa198;
}
.highlight .ge {
color: #586e75;
font-style: italic;
}
.highlight .gr {
color: #dc322f;
}
.highlight .gh {
color: #cb4b16;
}
.highlight .gi {
color: #859900;
}
.highlight .go,
.highlight .gp {
color: #586e75;
}
.highlight .gs {
color: #586e75;
font-weight: bold;
}
.highlight .gu {
color: #cb4b16;
}
.highlight .gt {
color: #586e75;
}
.highlight .kc {
color: #cb4b16;
}
.highlight .kd {
color: #268bd2;
}
.highlight .kn,
.highlight .kp {
color: #859900;
}
.highlight .kr {
color: #268bd2;
}
.highlight .kt {
color: #dc322f;
}
.highlight .ld {
color: #586e75;
}
.highlight .m,
.highlight .s {
color: #2aa198;
}
.highlight .na {
color: #B58900;
}
.highlight .nb {
color: #586e75;
}
.highlight .nc {
color: #268bd2;
}
.highlight .no {
color: #cb4b16;
}
.highlight .nd {
color: #268bd2;
}
.highlight .ni,
.highlight .ne {
color: #cb4b16;
}
.highlight .nf {
color: #268bd2;
}
.highlight .nl,
.highlight .nn,
.highlight .nx,
.highlight .py {
color: #586e75;
}
.highlight .nt,
.highlight .nv {
color: #268bd2;
}
.highlight .ow {
color: #859900;
}
.highlight .w {
color: #586e75;
}
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .mo {
color: #2aa198;
}
.highlight .sb {
color: #93a1a1;
}
.highlight .sc {
color: #2aa198;
}
.highlight .sd {
color: #586e75;
}
.highlight .s2 {
color: #2aa198;
}
.highlight .se {
color: #cb4b16;
}
.highlight .sh {
color: #586e75;
}
.highlight .si,
.highlight .sx {
color: #2aa198;
}
.highlight .sr {
color: #dc322f;
}
.highlight .s1,
.highlight .ss {
color: #2aa198;
}
.highlight .bp,
.highlight .vc,
.highlight .vg,
.highlight .vi {
color: #268bd2;
}
.highlight .il {
color: #2aa198;
}
.media-number {
background: #f5f7fa;
border-radius: 290486px;
@ -4663,22 +4682,6 @@ table th {
border-bottom: none;
}
.box {
background: white;
border-radius: 5px;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1);
display: block;
padding: 20px;
}
a.box:hover, a.box:focus {
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px #1fc8db;
}
a.box:active {
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px #1fc8db;
}
.header {
background: white;
display: -webkit-box;

File diff suppressed because one or more lines are too long

2
css/bulma.min.css vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "bulma",
"version": "0.0.23",
"version": "0.0.24",
"homepage": "http://bulma.io",
"author": "jgthms <bbxdesign@gmail.com>",
"description": "Modern CSS framework based on Flexbox",