@rufous/ui 0.1.36 → 0.1.37
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.
- package/dist/Dialogs/BaseDialog.css +30 -0
- package/dist/Dialogs/index.css +30 -0
- package/dist/main.css +30 -0
- package/dist/style.css +30 -0
- package/dist/styles/button.css +30 -0
- package/package.json +1 -1
|
@@ -76,6 +76,36 @@
|
|
|
76
76
|
background: #a41b06;
|
|
77
77
|
color: #fff;
|
|
78
78
|
}
|
|
79
|
+
.standard-btn {
|
|
80
|
+
background: #f6f6f6;
|
|
81
|
+
background-color: #f6f6f6;
|
|
82
|
+
border: 1px solid #d5d5d5;
|
|
83
|
+
color: #535656;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
font-weight: 300;
|
|
86
|
+
box-shadow: none;
|
|
87
|
+
width: 122px;
|
|
88
|
+
height: 40px;
|
|
89
|
+
text-transform: none;
|
|
90
|
+
font-size: 16px;
|
|
91
|
+
border: 1px solid #d5d5d5;
|
|
92
|
+
height: 40px;
|
|
93
|
+
text-transform: capitalize;
|
|
94
|
+
font-weight: 300;
|
|
95
|
+
color: #535656;
|
|
96
|
+
}
|
|
97
|
+
.standard-btn:hover {
|
|
98
|
+
background: #ffffff;
|
|
99
|
+
background-color: #ffffff;
|
|
100
|
+
box-shadow: none;
|
|
101
|
+
}
|
|
102
|
+
@media (max-width: 767px) {
|
|
103
|
+
.standard-btn {
|
|
104
|
+
width: 90px;
|
|
105
|
+
height: 30px;
|
|
106
|
+
font-size: 13px;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
79
109
|
|
|
80
110
|
/* lib/styles/dialog.css */
|
|
81
111
|
.dialog-overlay {
|
package/dist/Dialogs/index.css
CHANGED
|
@@ -76,6 +76,36 @@
|
|
|
76
76
|
background: #a41b06;
|
|
77
77
|
color: #fff;
|
|
78
78
|
}
|
|
79
|
+
.standard-btn {
|
|
80
|
+
background: #f6f6f6;
|
|
81
|
+
background-color: #f6f6f6;
|
|
82
|
+
border: 1px solid #d5d5d5;
|
|
83
|
+
color: #535656;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
font-weight: 300;
|
|
86
|
+
box-shadow: none;
|
|
87
|
+
width: 122px;
|
|
88
|
+
height: 40px;
|
|
89
|
+
text-transform: none;
|
|
90
|
+
font-size: 16px;
|
|
91
|
+
border: 1px solid #d5d5d5;
|
|
92
|
+
height: 40px;
|
|
93
|
+
text-transform: capitalize;
|
|
94
|
+
font-weight: 300;
|
|
95
|
+
color: #535656;
|
|
96
|
+
}
|
|
97
|
+
.standard-btn:hover {
|
|
98
|
+
background: #ffffff;
|
|
99
|
+
background-color: #ffffff;
|
|
100
|
+
box-shadow: none;
|
|
101
|
+
}
|
|
102
|
+
@media (max-width: 767px) {
|
|
103
|
+
.standard-btn {
|
|
104
|
+
width: 90px;
|
|
105
|
+
height: 30px;
|
|
106
|
+
font-size: 13px;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
79
109
|
|
|
80
110
|
/* lib/styles/dialog.css */
|
|
81
111
|
.dialog-overlay {
|
package/dist/main.css
CHANGED
|
@@ -76,6 +76,36 @@
|
|
|
76
76
|
background: #a41b06;
|
|
77
77
|
color: #fff;
|
|
78
78
|
}
|
|
79
|
+
.standard-btn {
|
|
80
|
+
background: #f6f6f6;
|
|
81
|
+
background-color: #f6f6f6;
|
|
82
|
+
border: 1px solid #d5d5d5;
|
|
83
|
+
color: #535656;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
font-weight: 300;
|
|
86
|
+
box-shadow: none;
|
|
87
|
+
width: 122px;
|
|
88
|
+
height: 40px;
|
|
89
|
+
text-transform: none;
|
|
90
|
+
font-size: 16px;
|
|
91
|
+
border: 1px solid #d5d5d5;
|
|
92
|
+
height: 40px;
|
|
93
|
+
text-transform: capitalize;
|
|
94
|
+
font-weight: 300;
|
|
95
|
+
color: #535656;
|
|
96
|
+
}
|
|
97
|
+
.standard-btn:hover {
|
|
98
|
+
background: #ffffff;
|
|
99
|
+
background-color: #ffffff;
|
|
100
|
+
box-shadow: none;
|
|
101
|
+
}
|
|
102
|
+
@media (max-width: 767px) {
|
|
103
|
+
.standard-btn {
|
|
104
|
+
width: 90px;
|
|
105
|
+
height: 30px;
|
|
106
|
+
font-size: 13px;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
79
109
|
|
|
80
110
|
/* lib/styles/dialog.css */
|
|
81
111
|
.dialog-overlay {
|
package/dist/style.css
CHANGED
|
@@ -76,6 +76,36 @@
|
|
|
76
76
|
background: #a41b06;
|
|
77
77
|
color: #fff;
|
|
78
78
|
}
|
|
79
|
+
.standard-btn {
|
|
80
|
+
background: #f6f6f6;
|
|
81
|
+
background-color: #f6f6f6;
|
|
82
|
+
border: 1px solid #d5d5d5;
|
|
83
|
+
color: #535656;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
font-weight: 300;
|
|
86
|
+
box-shadow: none;
|
|
87
|
+
width: 122px;
|
|
88
|
+
height: 40px;
|
|
89
|
+
text-transform: none;
|
|
90
|
+
font-size: 16px;
|
|
91
|
+
border: 1px solid #d5d5d5;
|
|
92
|
+
height: 40px;
|
|
93
|
+
text-transform: capitalize;
|
|
94
|
+
font-weight: 300;
|
|
95
|
+
color: #535656;
|
|
96
|
+
}
|
|
97
|
+
.standard-btn:hover {
|
|
98
|
+
background: #ffffff;
|
|
99
|
+
background-color: #ffffff;
|
|
100
|
+
box-shadow: none;
|
|
101
|
+
}
|
|
102
|
+
@media (max-width: 767px) {
|
|
103
|
+
.standard-btn {
|
|
104
|
+
width: 90px;
|
|
105
|
+
height: 30px;
|
|
106
|
+
font-size: 13px;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
79
109
|
|
|
80
110
|
/* lib/styles/dialog.css */
|
|
81
111
|
.dialog-overlay {
|
package/dist/styles/button.css
CHANGED
|
@@ -76,3 +76,33 @@
|
|
|
76
76
|
background: #a41b06;
|
|
77
77
|
color: #fff;
|
|
78
78
|
}
|
|
79
|
+
.standard-btn {
|
|
80
|
+
background: #f6f6f6;
|
|
81
|
+
background-color: #f6f6f6;
|
|
82
|
+
border: 1px solid #d5d5d5;
|
|
83
|
+
color: #535656;
|
|
84
|
+
font-size: 16px;
|
|
85
|
+
font-weight: 300;
|
|
86
|
+
box-shadow: none;
|
|
87
|
+
width: 122px;
|
|
88
|
+
height: 40px;
|
|
89
|
+
text-transform: none;
|
|
90
|
+
font-size: 16px;
|
|
91
|
+
border: 1px solid #d5d5d5;
|
|
92
|
+
height: 40px;
|
|
93
|
+
text-transform: capitalize;
|
|
94
|
+
font-weight: 300;
|
|
95
|
+
color: #535656;
|
|
96
|
+
}
|
|
97
|
+
.standard-btn:hover {
|
|
98
|
+
background: #ffffff;
|
|
99
|
+
background-color: #ffffff;
|
|
100
|
+
box-shadow: none;
|
|
101
|
+
}
|
|
102
|
+
@media (max-width: 767px) {
|
|
103
|
+
.standard-btn {
|
|
104
|
+
width: 90px;
|
|
105
|
+
height: 30px;
|
|
106
|
+
font-size: 13px;
|
|
107
|
+
}
|
|
108
|
+
}
|