Skip to content

Commit

Permalink
bump version v4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhairi committed Aug 2, 2018
1 parent 7396cd0 commit e5630a9
Show file tree
Hide file tree
Showing 43 changed files with 682 additions and 68 deletions.
2 changes: 1 addition & 1 deletion assets/stylesheets/bootswatch/cerulean/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cerulean 4.1.2
// Cerulean 4.1.3
// Bootswatch


Expand Down
2 changes: 1 addition & 1 deletion assets/stylesheets/bootswatch/cerulean/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cerulean 4.1.2
// Cerulean 4.1.3
// Bootswatch

//
Expand Down
2 changes: 1 addition & 1 deletion assets/stylesheets/bootswatch/cosmo/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cosmo 4.1.2
// Cosmo 4.1.3
// Bootswatch


Expand Down
2 changes: 1 addition & 1 deletion assets/stylesheets/bootswatch/cosmo/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cosmo 4.1.2
// Cosmo 4.1.3
// Bootswatch

//
Expand Down
62 changes: 59 additions & 3 deletions assets/stylesheets/bootswatch/cyborg/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cyborg 4.1.2
// Cyborg 4.1.3
// Bootswatch


Expand Down Expand Up @@ -54,8 +54,28 @@ table {

.table {

.thead-dark th {
color: $white;
&-primary {
&, > th, > td {
background-color: $primary;
}
}

&-secondary {
&, > th, > td {
background-color: $secondary;
}
}

&-light {
&, > th, > td {
background-color: $light;
}
}

&-dark {
&, > th, > td {
background-color: $dark;
}
}

&-success {
Expand All @@ -82,8 +102,38 @@ table {
}
}

&-active {
&, > th, > td {
background-color: $table-active-bg;
}
}

&-hover {

.table-primary:hover {
&, > th, > td {
background-color: darken($primary, 5%);
}
}

.table-secondary:hover {
&, > th, > td {
background-color: darken($secondary, 5%);
}
}

.table-light:hover {
&, > th, > td {
background-color: darken($light, 5%);
}
}

.table-dark:hover {
&, > th, > td {
background-color: darken($dark, 5%);
}
}

.table-success:hover {
&, > th, > td {
background-color: darken($success, 5%);
Expand All @@ -108,6 +158,12 @@ table {
}
}

.table-active:hover {
&, > th, > td {
background-color: $table-active-bg;
}
}

}
}

Expand Down
6 changes: 3 additions & 3 deletions assets/stylesheets/bootswatch/cyborg/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Cyborg 4.1.2
// Cyborg 4.1.3
// Bootswatch

//
Expand Down Expand Up @@ -34,8 +34,8 @@ $success: $green !default;
$info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;
$light: $gray-800 !default;
$dark: $gray-400 !default;


// Body
Expand Down
67 changes: 57 additions & 10 deletions assets/stylesheets/bootswatch/darkly/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Darkly 4.1.2
// Darkly 4.1.3
// Bootswatch


Expand Down Expand Up @@ -39,18 +39,29 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
// Tables ======================================================================

.table {
&-success,
&-info,
&-warning,
&-danger {
color: #fff;

&-primary {
&, > th, > td {
background-color: $primary;
}
}
}

.table {
&-secondary {
&, > th, > td {
background-color: $secondary;
}
}

.thead-dark th {
color: $white;
&-light {
&, > th, > td {
background-color: $light;
}
}

&-dark {
&, > th, > td {
background-color: $dark;
}
}

&-success {
Expand All @@ -77,8 +88,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
}
}

&-active {
&, > th, > td {
background-color: $table-active-bg;
}
}

&-hover {

.table-primary:hover {
&, > th, > td {
background-color: darken($primary, 5%);
}
}

.table-secondary:hover {
&, > th, > td {
background-color: darken($secondary, 5%);
}
}

.table-light:hover {
&, > th, > td {
background-color: darken($light, 5%);
}
}

.table-dark:hover {
&, > th, > td {
background-color: darken($dark, 5%);
}
}

.table-success:hover {
&, > th, > td {
background-color: darken($success, 5%);
Expand All @@ -103,6 +144,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
}
}

.table-active:hover {
&, > th, > td {
background-color: $table-active-bg;
}
}

}
}

Expand Down
10 changes: 8 additions & 2 deletions assets/stylesheets/bootswatch/darkly/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Darkly 4.1.2
// Darkly 4.1.3
// Bootswatch

//
Expand Down Expand Up @@ -35,7 +35,9 @@ $info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-800 !default;
$dark: $gray-800 !default;
$dark: $gray-500 !default;

$yiq-contrasted-threshold: 175 !default;

// Body

Expand All @@ -52,6 +54,10 @@ $font-family-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe

$font-size-base: 0.9375rem !default;

$h1-font-size: 3rem !default;
$h2-font-size: 2.5rem !default;
$h3-font-size: 2rem !default;

// Tables

$table-accent-bg: $gray-800 !default;
Expand Down
74 changes: 68 additions & 6 deletions assets/stylesheets/bootswatch/flatly/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Flatly 4.1.2
// Flatly 4.1.3
// Bootswatch


Expand Down Expand Up @@ -43,17 +43,39 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"

.table {

.thead-dark th {
background-color: $primary;
}

&-primary,
&-secondary,
&-success,
&-info,
&-warning,
&-danger {
color: #fff;
}

&-primary {
&, > th, > td {
background-color: $primary;
}
}

&-secondary {
&, > th, > td {
background-color: $secondary;
}
}

&-light {
&, > th, > td {
background-color: $light;
}
}

&-dark {
&, > th, > td {
background-color: $dark;
}
}

&-success {
&, > th, > td {
background-color: $success;
Expand All @@ -78,8 +100,38 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
}
}

&-active {
&, > th, > td {
background-color: $table-active-bg;
}
}

&-hover {

.table-primary:hover {
&, > th, > td {
background-color: darken($primary, 5%);
}
}

.table-secondary:hover {
&, > th, > td {
background-color: darken($secondary, 5%);
}
}

.table-light:hover {
&, > th, > td {
background-color: darken($light, 5%);
}
}

.table-dark:hover {
&, > th, > td {
background-color: darken($dark, 5%);
}
}

.table-success:hover {
&, > th, > td {
background-color: darken($success, 5%);
Expand All @@ -104,6 +156,12 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
}
}

.table-active:hover {
&, > th, > td {
background-color: $table-active-bg;
}
}

}
}

Expand Down Expand Up @@ -147,7 +205,6 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
}
}


.alert {
border: none;
color: $white;
Expand Down Expand Up @@ -178,4 +235,9 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic"
// Containers ==================================================================
.modal .close{
color: $black;

&:not(:disabled):not(.disabled):hover,
&:not(:disabled):not(.disabled):focus {
color: $black;
}
}
4 changes: 3 additions & 1 deletion assets/stylesheets/bootswatch/flatly/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Flatly 4.1.2
// Flatly 4.1.3
// Bootswatch

//
Expand Down Expand Up @@ -37,6 +37,8 @@ $danger: $red !default;
$light: $gray-200 !default;
$dark: $gray-700 !default;

$yiq-contrasted-threshold: 175 !default;

// Links

$link-color: $success !default;
Expand Down
2 changes: 1 addition & 1 deletion assets/stylesheets/bootswatch/journal/_bootswatch.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Journal 4.1.2
// Journal 4.1.3
// Bootswatch


Expand Down

0 comments on commit e5630a9

Please sign in to comment.