Skip to content

Commit 7487dc7

Browse files
updated doc comments
1 parent c32e973 commit 7487dc7

File tree

16 files changed

+61
-57
lines changed

16 files changed

+61
-57
lines changed

src/Components/Alert/variables.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/// STYLES ==============================================
66
$alert-styles: (
7-
// style name, theme variable
7+
// style name (class), theme variable
88
"primary" : theme('color', 'primary'),
99
"success" : theme('color', 'success'),
1010
"warning" : theme('color', 'warning'),
@@ -15,12 +15,12 @@ $alert-styles: (
1515
/// SIZES ===============================================
1616
$alert-sizes: (
1717
(
18-
"small", // size name
18+
"small", // size name (class)
1919
.749rem, // font-size
2020
.4rem // padding
2121
),
2222
(
23-
"large", // size name
23+
"large", // size name (class)
2424
1.1rem, // font-size
2525
.8rem // padding
2626
)

src/Components/Badge/variables.scss

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
/// STYLES ==============================================
66
$badge-styles: (
7+
// style name (class), theme variable
78
"primary" : theme('color', 'primary'),
89
"success" : theme('color', 'success'),
910
"warning" : theme('color', 'warning'),
@@ -14,17 +15,17 @@ $badge-styles: (
1415
/// SIZES ===============================================
1516
$badge-sizes: (
1617
(
17-
"tiny", // size name
18+
"tiny", // size name (class)
1819
.659rem!important, // font-size
1920
0 4px!important // padding
2021
),
2122
(
22-
"small", // size name
23+
"small", // size name (class)
2324
.749rem!important, // font-size
2425
1px 4px!important // padding
2526
),
2627
(
27-
"large", // size name
28+
"large", // size name (class)
2829
1.1rem!important, // font-size
2930
2px 8px!important // padding
3031
)

src/Components/Billboard/variables.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
/// STYLES ==============================================
66
$billboard-styles: (
7+
// style name (class), theme variable
78
"primary" : theme('color', 'primary'),
89
"success" : theme('color', 'success'),
910
"warning" : theme('color', 'warning'),
@@ -14,24 +15,24 @@ $billboard-styles: (
1415
/// SIZES ===============================================
1516
$billboard-sizes: (
1617
(
17-
"small", // size name
18+
"small", // size name (class)
1819
2.5rem 1.5rem, // padding
1920
1em // font-size
2021
),
2122
(
22-
"large", // size name
23+
"large", // size name (class)
2324
7.5rem 4rem, // padding
2425
1.6em // font-size
2526
)
2627
);
2728
$billboard-responsive-sizes : (
2829
(
29-
"small", // size name
30+
"small", // size name (class)
3031
1rem, // padding
3132
1em // font-size
3233
),
3334
(
34-
"large", // size name
35+
"large", // size name (class)
3536
1rem, // padding
3637
1.358em // font-size
3738
)

src/Components/Breadcrumb/variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
/// SIZES ===============================================
66
$breadcrumb-sizes: (
77
(
8-
'small', // size name
8+
'small', // size name (class)
99
.9589em, // font-size
1010
.15em, // seperator-padding
1111
1.25rem // seperator-size
1212
),
1313
(
14-
'large', // size name
14+
'large', // size name (class)
1515
1.18em, // font-size
1616
.18em, // seperator-padding
1717
1.7rem // seperator-size

src/Components/Navbar/variables.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// you can add your own custom styles.
77
$navbar-themes: (
88
(
9-
"light", // theme name
9+
"light", // theme name (class)
1010
white, // bg color
1111
#303232, // text color
1212
white, // input bg
@@ -15,7 +15,7 @@ $navbar-themes: (
1515
theme('color', 'grey') // divider color
1616
),
1717
(
18-
"dark", // theme name
18+
"dark", // theme name (class)
1919
theme('color', 'dark'), // bg color
2020
theme('color', 'negative'), // text color
2121
lighten(theme('color', 'dark'), 7%), // input bg
@@ -29,21 +29,21 @@ $navbar-themes: (
2929
// you can add your own custom sizes.
3030
$navbar-sizes: (
3131
(
32-
"mini", // size name
32+
"mini", // size name (class)
3333
45px, // min-height
3434
.9839em, // button font-size
3535
.445rem .9rem, // button padding
3636
70px // top spacer for navbar (min-height + 25px)
3737
),
3838
(
39-
"small", // size name
39+
"small", // size name (class)
4040
65px, // min-height
4141
1em, // button font-size
4242
.645rem 1.4rem, // button padding
4343
90px // top spacer for navbar (min-height + 25px)
4444
),
4545
(
46-
"large", // size name
46+
"large", // size name (class)
4747
95px, // min-height
4848
1.28em, // button font-size
4949
.645rem 1.4rem, // button padding

src/Components/Panel/variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
/// SIZES ===============================================
66
$panel-sizes: (
77
(
8-
"mini", // size name
8+
"mini", // size name (class)
99
.985rem, // font-size (title)
1010
4px 8px // padding (title/content/bottom)
1111
),
1212
(
13-
"small", // size name
13+
"small", // size name (class)
1414
1.038rem, // font-size (title)
1515
8px 12px // padding (title/content/bottom)
1616
)

src/Components/Process/variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
/////////////////////////////////////////////////////////
44

55
/// STYLES ==============================================
6-
$process-styles : (
7-
// style name, color theme
6+
$process-styles: (
7+
// style name (class), color theme
88
"success" : theme('color', 'success'),
99
"warning" : theme('color', 'warning'),
1010
"error" : theme('color', 'error'),

src/Components/Progress/variables.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
/////////////////////////////////////////////////////////
44

55
/// STYLES ==============================================
6-
$progress-styles : (
6+
$progress-styles: (
7+
// style name (class), color theme
78
"success" : theme('color', 'success'),
89
"warning" : theme('color', 'warning'),
910
"error" : theme('color', 'error'),

src/Components/Stats/variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/// STYLES ==============================================
66
$stats-styles: (
7-
// style name, theme variable
7+
// style name (class), theme variable
88
"primary" : theme('color', 'primary'),
99
"success" : theme('color', 'success'),
1010
"warning" : theme('color', 'warning'),

src/Components/Tabnav/variables.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
/// STYLES ==============================================
66
$tabnav-styles: (
77
(
8-
'success', // style name
8+
'success', // style name (class)
99
theme('color', 'success') // color
1010
),
1111
(
12-
'warning', // style name
12+
'warning', // style name (class)
1313
theme('color', 'warning') // color
1414
),
1515
(
16-
'error', // style name
16+
'error', // style name (class)
1717
theme('color', 'error') // color
1818
),
1919
(
20-
'dark', // style name
20+
'dark', // style name (class)
2121
theme('color', 'text') // color
2222
)
2323
);

0 commit comments

Comments
 (0)