@pmidc/upyog-css 1.2.11 → 1.2.13
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/index.css +25 -2
- package/dist/index.min.css +1 -1
- package/package.json +63 -63
- package/src/components/card.scss +1 -10
- package/src/components/selectdropdown.scss +2 -3
- package/src/index.scss +19 -1
package/dist/index.css
CHANGED
|
@@ -2481,9 +2481,9 @@ body {
|
|
|
2481
2481
|
float: none !important; }
|
|
2482
2482
|
.employee-select-wrap .options-card {
|
|
2483
2483
|
right: 0;
|
|
2484
|
-
left:
|
|
2484
|
+
left: -56px;
|
|
2485
2485
|
width: 100% !important;
|
|
2486
|
-
min-width:
|
|
2486
|
+
min-width: 150px;
|
|
2487
2487
|
-webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
2488
2488
|
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
2489
2489
|
max-height: 250px !important;
|
|
@@ -19073,3 +19073,26 @@ audio, canvas, embed, iframe, img, object, svg, video {
|
|
|
19073
19073
|
font-size: 15px !important; }
|
|
19074
19074
|
.card-caption, .card-text, p {
|
|
19075
19075
|
font-size: 14px !important; } }
|
|
19076
|
+
|
|
19077
|
+
.link-button-margin {
|
|
19078
|
+
margin-top: 10px; }
|
|
19079
|
+
|
|
19080
|
+
.tl-add-action-button {
|
|
19081
|
+
display: inline-block;
|
|
19082
|
+
padding: 8px 16px;
|
|
19083
|
+
background: linear-gradient(135deg, #2563eb, #1e40af);
|
|
19084
|
+
color: #fff !important;
|
|
19085
|
+
border-radius: 4px;
|
|
19086
|
+
cursor: pointer;
|
|
19087
|
+
font-size: 16px;
|
|
19088
|
+
font-weight: 600;
|
|
19089
|
+
text-decoration: none !important;
|
|
19090
|
+
margin-top: 16px;
|
|
19091
|
+
margin-bottom: 8px;
|
|
19092
|
+
border: none;
|
|
19093
|
+
-webkit-transition: background-color .2s ease,-webkit-transform .1s ease;
|
|
19094
|
+
transition: background-color .2s ease,-webkit-transform .1s ease;
|
|
19095
|
+
transition: background-color .2s ease,transform .1s ease;
|
|
19096
|
+
transition: background-color .2s ease,transform .1s ease,-webkit-transform .1s ease;
|
|
19097
|
+
-webkit-box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
|
|
19098
|
+
box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2); }
|