dlegr250_material_design 0.1.28 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb7ac3ddd78e2deff80068861009e7818fe787bb
|
|
4
|
+
data.tar.gz: 95d68cd0d9e659712569cabea6f88e954a226c13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db58432824cf63e9a060e23f779509705387f1838573d2f8584d53e41ea60ad3e39dac98f948f6d84d15c4683a7c891793baa830b662649db76dcc73688c213b
|
|
7
|
+
data.tar.gz: 76bad46e0f12771b7518b46eac3d7673d4f5ac1f896d1a706e9c7c287dc7ca724c695d789e8c52e1f65ed654cc88a7164bd9b4baf1a6429177fcf4c56a97e003
|
|
@@ -58,10 +58,9 @@
|
|
|
58
58
|
|
|
59
59
|
// Green box
|
|
60
60
|
.box-success {
|
|
61
|
-
background-color:
|
|
62
|
-
border: 1px solid
|
|
63
|
-
color: color("
|
|
64
|
-
@include rounded-corners;
|
|
61
|
+
background-color: #dff0d8;
|
|
62
|
+
border: 1px solid color("green");
|
|
63
|
+
color: color("text");
|
|
65
64
|
}
|
|
66
65
|
|
|
67
66
|
// Blue box
|
|
@@ -69,7 +68,6 @@
|
|
|
69
68
|
background-color: #e6f6fc;
|
|
70
69
|
border: 1px solid #b8e5f7;
|
|
71
70
|
color: #008fc6;
|
|
72
|
-
@include rounded-corners;
|
|
73
71
|
}
|
|
74
72
|
|
|
75
73
|
// Yellow box
|
|
@@ -77,13 +75,11 @@
|
|
|
77
75
|
background-color: color("highlight");
|
|
78
76
|
border: 1px solid color("dark-highlight");
|
|
79
77
|
color: color("text");
|
|
80
|
-
@include rounded-corners;
|
|
81
78
|
}
|
|
82
79
|
|
|
83
80
|
// Red box
|
|
84
81
|
.box-error {
|
|
85
|
-
background-color: #
|
|
86
|
-
border: 1px solid #
|
|
87
|
-
color: #
|
|
88
|
-
@include rounded-corners;
|
|
82
|
+
background-color: #fdf2ec;
|
|
83
|
+
border: 1px solid #f8daca;
|
|
84
|
+
color: #e36b2b;
|
|
89
85
|
}
|