[d565449] | 1 | /* Active modal: Disable scrolling when the modal is open */
|
---|
| 2 | .activeModal {
|
---|
| 3 | overflow-y: hidden; /* Disable scrolling */
|
---|
| 4 | }
|
---|
| 5 |
|
---|
| 6 | /* Modal and overlay styles */
|
---|
| 7 | .modal,
|
---|
| 8 | .overlay {
|
---|
| 9 | position: fixed;
|
---|
| 10 | top: 0;
|
---|
| 11 | left: 0;
|
---|
| 12 | width: 100vw;
|
---|
| 13 | height: 100vh;
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | .overlay {
|
---|
[0c6b92a] | 17 | /*background: rgba(255, 255, 255, 0.05);*/
|
---|
| 18 | z-index: 999;
|
---|
[d565449] | 19 | }
|
---|
| 20 |
|
---|
[0c6b92a] | 21 | .draggableHeader {
|
---|
| 22 | cursor: move;
|
---|
| 23 | padding: 10px;
|
---|
| 24 | background-color: #2c2f33;
|
---|
| 25 | color: #ffffff;
|
---|
| 26 | border-bottom: 1px solid #444;
|
---|
| 27 | }
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 |
|
---|
[d565449] | 31 | .modalContent {
|
---|
| 32 | position: absolute;
|
---|
| 33 | top: 50%;
|
---|
| 34 | left: 50%;
|
---|
| 35 | transform: translate(-50%, -50%);
|
---|
[79a0317] | 36 | background-color: #2c2f33f7;
|
---|
[0c6b92a] | 37 | color: #ffffff !important;
|
---|
[d565449] | 38 | padding: 20px;
|
---|
| 39 | border-radius: 8px;
|
---|
| 40 | max-width: 600px;
|
---|
| 41 | width: 100%;
|
---|
| 42 | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
---|
[0c6b92a] | 43 | z-index: 1000;
|
---|
[d565449] | 44 | }
|
---|
| 45 |
|
---|
[0c6b92a] | 46 |
|
---|
| 47 | .title {
|
---|
[d565449] | 48 | margin-bottom: 15px;
|
---|
[0c6b92a] | 49 | color: #ffffff ;
|
---|
[d565449] | 50 | }
|
---|
| 51 |
|
---|
| 52 | .btnModal {
|
---|
| 53 | padding: 10px 20px;
|
---|
| 54 | font-size: 18px;
|
---|
| 55 | background-color: #007bff;
|
---|
| 56 | color: white;
|
---|
| 57 | border: none;
|
---|
| 58 | border-radius: 5px;
|
---|
| 59 | cursor: pointer;
|
---|
| 60 | margin: 20px;
|
---|
| 61 | display: block;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | .btnModal:hover {
|
---|
| 65 | background-color: #0056b3;
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | .closeModal {
|
---|
| 69 | position: absolute;
|
---|
| 70 | top: 10px;
|
---|
| 71 | right: 10px;
|
---|
| 72 | padding: 5px 10px;
|
---|
| 73 | background-color: #dc3545;
|
---|
| 74 | color: white;
|
---|
| 75 | border: none;
|
---|
| 76 | border-radius: 5px;
|
---|
| 77 | cursor: pointer;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | .closeModal:hover {
|
---|
| 81 | background-color: #c82333;
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | .form {
|
---|
| 85 | display: flex;
|
---|
| 86 | flex-direction: column;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | .formGroup {
|
---|
| 90 | margin-bottom: 15px;
|
---|
| 91 | }
|
---|
| 92 |
|
---|
[79a0317] | 93 | /*tuka novo start*/
|
---|
| 94 |
|
---|
| 95 | label {
|
---|
| 96 | font-size: 16px;
|
---|
| 97 | font-weight: bold;
|
---|
| 98 | margin-bottom: 8px;
|
---|
| 99 | }
|
---|
| 100 |
|
---|
| 101 | .customFileInput {
|
---|
| 102 | position: relative;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | .uploadButton {
|
---|
| 106 | background-color: #007bff;
|
---|
| 107 | color: white;
|
---|
| 108 | border: none;
|
---|
| 109 | padding: 10px 20px;
|
---|
| 110 | border-radius: 5px;
|
---|
| 111 | cursor: pointer;
|
---|
| 112 | font-size: 16px;
|
---|
| 113 | transition: background-color 0.3s ease;
|
---|
| 114 | }
|
---|
| 115 |
|
---|
| 116 | .uploadButton:hover {
|
---|
| 117 | background-color: #0056b3;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
| 120 | .uploadButton:focus {
|
---|
| 121 | outline: none;
|
---|
| 122 | box-shadow: 0 0 4px rgba(0, 123, 255, 0.6);
|
---|
| 123 | }
|
---|
| 124 |
|
---|
| 125 | .uploadButton:active {
|
---|
| 126 | background-color: #003f7f;
|
---|
| 127 | }
|
---|
| 128 |
|
---|
| 129 | /*tuka novo end*/
|
---|
| 130 |
|
---|
[d565449] | 131 | .formGroup label {
|
---|
| 132 | display: block;
|
---|
| 133 | margin-bottom: 5px;
|
---|
[0c6b92a] | 134 | color: #ffffff;
|
---|
[d565449] | 135 | }
|
---|
| 136 |
|
---|
| 137 | .formGroup input,
|
---|
| 138 | .formGroup select,
|
---|
| 139 | .formGroup textarea {
|
---|
| 140 | width: 100%;
|
---|
| 141 | padding: 8px;
|
---|
| 142 | border-radius: 4px;
|
---|
| 143 | border: 1px solid #ccc;
|
---|
[0c6b92a] | 144 | background-color: #23272a;
|
---|
| 145 | color: #ffffff;
|
---|
[d565449] | 146 | }
|
---|
| 147 |
|
---|
| 148 | .formGroup input::placeholder,
|
---|
| 149 | .formGroup textarea::placeholder {
|
---|
[0c6b92a] | 150 | color: #888888;
|
---|
[d565449] | 151 | }
|
---|
| 152 |
|
---|
| 153 | /* Checkbox alignment fix */
|
---|
| 154 | .formGroupCheckbox {
|
---|
[0c6b92a] | 155 |
|
---|
[d565449] | 156 | display: flex;
|
---|
[0c6b92a] | 157 | flex-direction: row;
|
---|
| 158 | vertical-align: middle;
|
---|
| 159 | align-items: flex-end;
|
---|
| 160 | /*justify-content: start;!* Vertical alignment *!*/
|
---|
| 161 | /*color: #ffffff;*/
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 | .formGroupCheckbox input{
|
---|
| 165 | width: 10%;
|
---|
| 166 | margin-bottom: 0.88em;
|
---|
[d565449] | 167 | }
|
---|
| 168 |
|
---|
| 169 | /* Add button */
|
---|
| 170 | .addButton {
|
---|
[0c6b92a] | 171 | background-color: #28a745 !important;
|
---|
[d565449] | 172 | color: white;
|
---|
| 173 | padding: 8px 15px;
|
---|
| 174 | border: none;
|
---|
| 175 | border-radius: 5px;
|
---|
| 176 | cursor: pointer;
|
---|
| 177 | margin-top: 10px;
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | .addButton:hover {
|
---|
[0c6b92a] | 181 | background-color: #218838 !important;
|
---|
[d565449] | 182 | }
|
---|
| 183 |
|
---|
| 184 | /* Save button styling */
|
---|
| 185 | .submitButton {
|
---|
[0c6b92a] | 186 | background-color: #28a745 !important;
|
---|
[d565449] | 187 | color: white;
|
---|
| 188 | padding: 10px 20px;
|
---|
| 189 | border: none;
|
---|
| 190 | border-radius: 5px;
|
---|
| 191 | cursor: pointer;
|
---|
| 192 | font-size: 16px;
|
---|
| 193 | margin-top: 15px;
|
---|
| 194 | }
|
---|
| 195 |
|
---|
| 196 | .submitButton:hover {
|
---|
| 197 | background-color: #218838;
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | .pinList {
|
---|
| 201 | list-style-type: none;
|
---|
| 202 | padding: 0;
|
---|
| 203 | margin-top: 15px;
|
---|
| 204 | }
|
---|
| 205 |
|
---|
| 206 | .pinItem {
|
---|
| 207 | background-color: #444;
|
---|
| 208 | padding: 8px;
|
---|
| 209 | margin-bottom: 5px;
|
---|
| 210 | color: white;
|
---|
| 211 | border-radius: 5px;
|
---|
| 212 | display: flex;
|
---|
| 213 | justify-content: space-between;
|
---|
| 214 | align-items: center;
|
---|
| 215 | }
|
---|
| 216 |
|
---|
| 217 | .removeButton {
|
---|
| 218 | background-color: #dc3545;
|
---|
| 219 | color: white;
|
---|
| 220 | border: none;
|
---|
| 221 | padding: 5px 10px;
|
---|
| 222 | border-radius: 5px;
|
---|
| 223 | cursor: pointer;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
| 226 | .removeButton:hover {
|
---|
| 227 | background-color: #c82333;
|
---|
| 228 | }
|
---|