welcome_css 0.5 → 0.6
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff90897c520c0cd8030a7d4cf324d12daaad97636fd7f7c403fbec831574426e
|
|
4
|
+
data.tar.gz: 411844292c6356ee453c76a05ff45f932d0a25aa5e6d23c77cbf03f58be23d50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57169780890fe3476c4ba00903d5851abe48a8c72989168bc088bc39435d7af3e9d295a4fb971f17e335f441af0b99776999ef28e763f6943d6cd43c71ab0e02
|
|
7
|
+
data.tar.gz: 73670f3da47c44a4319660e54718b9f7c4587344cd3fd232766e4cfeb2ec6fc99fca42d88f353747c37886fe448eb7d6306eef2b3e41b0c8ed8e630a5343d85e
|
|
@@ -688,6 +688,13 @@ table .ui-table-row {
|
|
|
688
688
|
.edit-form-group .col-lg-4 {
|
|
689
689
|
margin-bottom: 15px;
|
|
690
690
|
}
|
|
691
|
+
.edit-form-group .btn-outline-primary {
|
|
692
|
+
padding-left: 15px;
|
|
693
|
+
}
|
|
694
|
+
.edit-form-group .btn-outline-primary:hover {
|
|
695
|
+
background-color: $ui_back;
|
|
696
|
+
color: $ui_white;
|
|
697
|
+
}
|
|
691
698
|
.form-pill {
|
|
692
699
|
background-color:$ui_white;
|
|
693
700
|
padding: 6px 10px;
|
|
@@ -280,4 +280,171 @@ $lg-paddingbottom: 60px;
|
|
|
280
280
|
}
|
|
281
281
|
.am-left-sidebar .sidebar-elements > li > ul > .nav-items .am-scroller .content > ul > li > a:hover {
|
|
282
282
|
background-color: transparent !important;
|
|
283
|
+
}
|
|
284
|
+
.admin-options {
|
|
285
|
+
padding-right: 0 !important;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/* ====================================== */
|
|
289
|
+
|
|
290
|
+
@media (max-width: 1024px) and (min-width: 769px) {
|
|
291
|
+
.am-wrapper.main-app .menu-app {
|
|
292
|
+
width: 20% !important;
|
|
293
|
+
max-width: 20% !important;
|
|
294
|
+
}
|
|
295
|
+
.am-wrapper.main-app .ui-app-area {
|
|
296
|
+
width: 80%;
|
|
297
|
+
}
|
|
298
|
+
.main-app .ui-app-area .page-head {
|
|
299
|
+
margin-left: 0px !important;
|
|
300
|
+
margin-right: 0px !important;
|
|
301
|
+
}
|
|
302
|
+
.am-wrapper.main-app .ui-app-area .main-content, .am-wrapper.main-app .ui-app-area .page-head {
|
|
303
|
+
padding: 20px 0;
|
|
304
|
+
}
|
|
305
|
+
.admin-options {
|
|
306
|
+
margin-right: -15px;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
@media (min-width: 769px) {
|
|
310
|
+
input[type="radio"], input[type="checkbox"] {
|
|
311
|
+
display: none;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
@media (max-width: 768px) {
|
|
315
|
+
.page-head .col-md-6 {
|
|
316
|
+
width: 50%;
|
|
317
|
+
display: block;
|
|
318
|
+
float: left;
|
|
319
|
+
position: relative;
|
|
320
|
+
}
|
|
321
|
+
.am-wrapper.main-app .navbar {
|
|
322
|
+
height: 50px;
|
|
323
|
+
}
|
|
324
|
+
.am-top-header {
|
|
325
|
+
position: fixed !important;
|
|
326
|
+
top: 0;
|
|
327
|
+
width: 100%;
|
|
328
|
+
z-index: 9999;
|
|
329
|
+
}
|
|
330
|
+
.am-left-sidebar .am-logo {
|
|
331
|
+
height: 50px !important;
|
|
332
|
+
}
|
|
333
|
+
.am-wrapper.main-app .ui-app-area {
|
|
334
|
+
width: 100%;
|
|
335
|
+
margin-top: 50px;
|
|
336
|
+
display: block;
|
|
337
|
+
}
|
|
338
|
+
.am-wrapper.main-app .menu-app {
|
|
339
|
+
width: 100%;
|
|
340
|
+
transform: translate3d(0, 0, 0);
|
|
341
|
+
}
|
|
342
|
+
.am-left-sidebar.menu-app {
|
|
343
|
+
transform: translate3d(260px, 0px, 0px) !important;
|
|
344
|
+
position: fixed !important;
|
|
345
|
+
width: 260px !important;
|
|
346
|
+
background: #112e66;
|
|
347
|
+
color: #eee;
|
|
348
|
+
right: 0;
|
|
349
|
+
left: auto;
|
|
350
|
+
height: 100%;
|
|
351
|
+
transition: all 0.3s;
|
|
352
|
+
}
|
|
353
|
+
.am-left-sidebar .sidebar-elements > li.parent > a:after {
|
|
354
|
+
display: none;
|
|
355
|
+
}
|
|
356
|
+
.am-left-sidebar .sidebar-elements > li > a {
|
|
357
|
+
padding: 10px 10px 10px 0px;
|
|
358
|
+
}
|
|
359
|
+
.am-navbar-header .page-title img {
|
|
360
|
+
margin-left: -18px;
|
|
361
|
+
position: fixed;
|
|
362
|
+
margin-top: 2px;
|
|
363
|
+
}
|
|
364
|
+
.button {
|
|
365
|
+
position: absolute;
|
|
366
|
+
top: 10px;
|
|
367
|
+
left: 10px;
|
|
368
|
+
z-index: 10000;
|
|
369
|
+
color: white;
|
|
370
|
+
padding: 10px;
|
|
371
|
+
font-size: 30px;
|
|
372
|
+
cursor: pointer;
|
|
373
|
+
}
|
|
374
|
+
.button .fa {
|
|
375
|
+
transition: color 1000ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
376
|
+
transition-delay: 0.75s;
|
|
377
|
+
}
|
|
378
|
+
input[data-function*=swipe] {
|
|
379
|
+
position: absolute;
|
|
380
|
+
opacity: 0;
|
|
381
|
+
}
|
|
382
|
+
label[data-function*=swipe] {
|
|
383
|
+
position: fixed;
|
|
384
|
+
top: 0px;
|
|
385
|
+
right: 5px;
|
|
386
|
+
display: block;
|
|
387
|
+
width: 36px;
|
|
388
|
+
height: 50px;
|
|
389
|
+
text-align: center;
|
|
390
|
+
color: #444;
|
|
391
|
+
cursor: pointer;
|
|
392
|
+
transform: translate3d(0, 0, 0);
|
|
393
|
+
transition: transform 0.3s;
|
|
394
|
+
z-index: 9999;
|
|
395
|
+
font-size: 14px;
|
|
396
|
+
}
|
|
397
|
+
.am-content.ui-app-area {
|
|
398
|
+
flex: 1;
|
|
399
|
+
transform: translate3d(0, 0, 0);
|
|
400
|
+
transition: transform 0.3s;
|
|
401
|
+
}
|
|
402
|
+
input[data-function*=swipe]:checked ~ .am-content {
|
|
403
|
+
transform: translate3d(0, 0px, 0px) !important;
|
|
404
|
+
}
|
|
405
|
+
input[data-function*=swipe]:checked ~ .am-left-sidebar.col-12.col-lg-2.p-0.menu-app {
|
|
406
|
+
transform: translate3d(0px, 0px, 0px) !important;
|
|
407
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
|
|
408
|
+
}
|
|
409
|
+
.nav-menu-btn {
|
|
410
|
+
display: inline-block;
|
|
411
|
+
vertical-align: middle;
|
|
412
|
+
padding: 5px;
|
|
413
|
+
font-size: 24px;
|
|
414
|
+
cursor: pointer;
|
|
415
|
+
margin-top: 14px;
|
|
416
|
+
}
|
|
417
|
+
.nav-menu-btn .menu-bar {
|
|
418
|
+
background: #000;
|
|
419
|
+
width: 15px;
|
|
420
|
+
height: 2px;
|
|
421
|
+
margin: 0 0 3px;
|
|
422
|
+
transition: all .2s ease-in-out;
|
|
423
|
+
}
|
|
424
|
+
.nav-menu-btn .menu-bar:last-child {
|
|
425
|
+
margin: 0;
|
|
426
|
+
}
|
|
427
|
+
.am-wrapper.main-app .ui-app-area .main-content,
|
|
428
|
+
.am-wrapper.main-app .ui-app-area .page-head {
|
|
429
|
+
padding: 20px 0;
|
|
430
|
+
}
|
|
431
|
+
.main-app .ui-app-area .page-head {
|
|
432
|
+
margin-left: 0px !important;
|
|
433
|
+
margin-right: 0px !important;
|
|
434
|
+
}
|
|
435
|
+
.user-profile {
|
|
436
|
+
position: fixed;
|
|
437
|
+
top: 11px;
|
|
438
|
+
right: 46px;
|
|
439
|
+
}
|
|
440
|
+
.user-notifications {
|
|
441
|
+
position: fixed;
|
|
442
|
+
top: 11px;
|
|
443
|
+
right: 78px;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
@media (max-width: 480px) {
|
|
447
|
+
.am-content.ui-app-area table {
|
|
448
|
+
table-layout: auto !important;
|
|
449
|
+
}
|
|
283
450
|
}
|
data/lib/welcome_css/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: welcome_css
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.6'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jose Camacho
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|