Skip to content

Commit 06d02fa

Browse files
committed
cleaned styles
1 parent 3d5df6b commit 06d02fa

File tree

17 files changed

+137
-156
lines changed

17 files changed

+137
-156
lines changed

dist/main.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/utility.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/utility.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@webpixels/css",
33
"description": "Utility and component-centric design system based on Bootstrap for fast, responsive UI development.",
4-
"version": "2.0.0-beta.8",
4+
"version": "2.0.0-beta.10",
55
"version_short": "2.0",
66
"license": "MIT",
77
"style": "dist/index.css",

scss/components/_button.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
//
2+
// Buttons
3+
//
4+
15
// Soft color variation
26
@each $color, $value in $theme-colors {
37
.btn-soft-#{$color} {

scss/components/_index.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
@import "./nav";
1111
@import "./navbar";
1212
@import "./navbar-vertical";
13+
@import "./pagination";
1314
@import "./progress";
1415
@import "./tables";

scss/components/_navbar-vertical.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
overflow-y: auto;
128128
z-index: 1000;
129129
@include border-radius($navbar-vertical-border-radius);
130-
@include transition($transition-base);
130+
// @include transition($transition-base);
131131

132132
@if $enable-shadows {
133133
@include box-shadow($navbar-vertical-box-shadow);

scss/components/_pagination.scss

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Spaced pagination
2+
3+
.pagination {
4+
margin: 0;
5+
}
6+
7+
.pagination-spaced {
8+
border-radius: 0;
9+
10+
.page-link {
11+
display: inline-flex;
12+
align-items: center;
13+
justify-content: center;
14+
padding: 0;
15+
border-radius: $pagination-border-radius;
16+
width: 2.25rem;
17+
height: 2.25rem;
18+
}
19+
20+
&.pagination-sm {
21+
.page-link {
22+
width: 1.875rem;
23+
height: 1.875rem;
24+
border-radius: $border-radius-sm;
25+
}
26+
}
27+
28+
&.pagination-lg {
29+
.page-link {
30+
width: 3.25rem;
31+
height: 3.25rem;
32+
}
33+
}
34+
}

scss/core/_colors.scss

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,4 @@ $info: $cyan !default;
3636
$warning: $orange !default;
3737
$danger: $red !default;
3838
$light: $gray-100 !default;
39-
$dark: $gray-900 !default;
40-
41-
// Surfaces
42-
// Colors used for content area background colors
43-
44-
$surface-primary: $white !default;
45-
$surface-secondary: $gray-100 !default;
46-
$surface-light: $gray-200 !default;
47-
$surface-dark: shade-color($dark, 7%) !default;
39+
$dark: $gray-900 !default;

0 commit comments

Comments
 (0)