padma-assets 0.2.3 → 0.2.4

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: 1848d0503fb07e22d674004d3160b493e746f139
4
- data.tar.gz: af865c193296af298b1fcaa49e8de667efdbda4a
3
+ metadata.gz: 7093c29144f85ae4de141c79d70d7908f96f998b
4
+ data.tar.gz: 0e458b3bd9f6a26130f90bcd4c7a8471ba7cd8aa
5
5
  SHA512:
6
- metadata.gz: 01fafd896ff8bc058e2673a5c66016e5178c5975dd152d99bab530930b61eb1e5a5c45dd77de9a133e010211448497e9cd7781b4a643c1a5e465a85399b27573
7
- data.tar.gz: f19a81085bf0016b080a310c97f0e6b914f9fa8987ade0117014089fc2b7a0532a21c19ec6466b43dcebc52988bf6c10452cdf69107bd9b0e8f2bb35ddea34ac
6
+ metadata.gz: f9f5d604b3c8e35ba531ce018630789fa36fad4052e5b8f6f19212d7878db5b8dc7811703995a589e0318a69f9c05f8d7e84223f5055b41a67ca74925b0da4e0
7
+ data.tar.gz: ecf43942f4655d0bd899a076b37f14de20b76ce1e93d2c0a7f1e7c1d3ec187a55f7f23ba4d68762130b77ee67107534098df4d1594a0045c888fdb11284775d8
@@ -2,11 +2,10 @@ $(function () {
2
2
  $('[data-toggle="tooltip"]').tooltip({
3
3
  container: 'body',
4
4
  delay: {
5
- show: 400,
6
- hide: 100
5
+ show: 400,
6
+ hide: 100
7
7
  }
8
8
  })
9
9
  $('[data-toggle="popover"]').popover({
10
-
11
10
  })
12
11
  })
@@ -640,13 +640,8 @@ select {
640
640
  margin-bottom: 15px;
641
641
  margin-top: 15px;
642
642
  > li {
643
- display: inline-block;
644
- vertical-align: middle;
645
643
  > a,
646
644
  > span {
647
- border: none;
648
- display: inline-block;
649
- float: none;
650
645
  &:focus,
651
646
  &:hover {
652
647
  background-color: $bg-lightgrey;
@@ -658,7 +653,7 @@ select {
658
653
  &,
659
654
  &:focus,
660
655
  &:hover {
661
- background-color: $bg-btn-primary;
656
+ background-color: $bg-base-blue;
662
657
  font: {
663
658
  weight: bold;
664
659
  }
@@ -668,6 +663,55 @@ select {
668
663
  }
669
664
  }
670
665
 
666
+ // Custom pagination-area
667
+ .pagination_area {
668
+ float: right;
669
+ .pagination_nav {
670
+ list-style-type: none;
671
+ margin: 0;
672
+ padding: 0;
673
+ li {
674
+ display: inline;
675
+ &.page,
676
+ & > a,
677
+ & > span {
678
+ background-color: #fff;
679
+ border: 1px solid #ddd;
680
+ float: left;
681
+ font: {
682
+ family: $font-family-sans-serif;
683
+ size: 13.5px;
684
+ }
685
+ line-height: $font-line-height-default;
686
+ margin-left: -1px;
687
+ padding: $padding-base-btn-sm;
688
+ position: relative;
689
+ }
690
+ &.page:first-child,
691
+ &:first-child > a,
692
+ &:first-child > span {
693
+ border-radius: 4px 0 0 4px;
694
+ }
695
+ &.page:last-child,
696
+ &:last-child > a,
697
+ &:last-child > span {
698
+ border-radius: 0 4px 4px 0;
699
+ }
700
+ &.current,
701
+ &.current > a,
702
+ &.current > span {
703
+ background-color: $bg-base-blue;
704
+ border-color: $bg-base-blue;
705
+ color: #fff;
706
+ font: {
707
+ weight: bold;
708
+ }
709
+ z-index: 1;
710
+ }
711
+ }
712
+ }
713
+ }
714
+
671
715
  // Dropdown
672
716
  // Declare new variables for Dropdown
673
717
  $bg-dropdown-responsive: #1e5788;
@@ -366,14 +366,13 @@ $card-primary-border-top: #16acf2;
366
366
  .card-title {
367
367
  display: block;
368
368
  font: {
369
- size: 12px;
369
+ size: 14px;
370
370
  weight: bold;
371
371
  }
372
372
  margin: 0 0 5px;
373
373
  overflow: hidden;
374
374
  padding: 5px 5px 0;
375
375
  text-overflow: ellipsis;
376
- text-transform: uppercase;
377
376
  white-space: nowrap;
378
377
  @supports (display: -webkit-box) {
379
378
  display: -webkit-box;
@@ -485,4 +484,60 @@ $card-primary-border-top: #16acf2;
485
484
  }
486
485
  }
487
486
  }
487
+ }
488
+
489
+ // Filters
490
+ #filter-container {
491
+ background-color: #fff;
492
+ border-top: 4px solid $bg-panel;
493
+ margin-top: 20px;
494
+ padding: 10px 0;
495
+ position: relative;
496
+ .filter-criteria {
497
+ border: 1px solid $bg-panel;
498
+ padding-top: 10px;
499
+ position: relative;
500
+ }
501
+ .modal-footer {
502
+ background-color: $bg-lightgrey;
503
+ border: none;
504
+ width: 100%;
505
+ ul,
506
+ ol {
507
+ list-style-type: none;
508
+ margin: 0;
509
+ padding: 0;
510
+ li {
511
+ display: inline-block;
512
+ vertical-align: middle;
513
+ }
514
+ }
515
+ }
516
+ }
517
+
518
+ #slide_dialogs {
519
+ .slide_dialog {
520
+ border: none;
521
+ border-top: 4px solid $bg-panel;
522
+ padding: 10px 0;
523
+ .formtastic {
524
+ border: 1px solid $bg-panel;
525
+ padding-top: 10px;
526
+ }
527
+ }
528
+ .modal-footer {
529
+ background-color: $bg-lightgrey;
530
+ border: none;
531
+ width: 100%;
532
+ ul,
533
+ ol {
534
+ list-style-type: none;
535
+ margin: 0;
536
+ padding: 0;
537
+ li {
538
+ display: inline-block;
539
+ vertical-align: middle;
540
+ }
541
+ }
542
+ }
488
543
  }
@@ -57,6 +57,7 @@ $font-size-base-sm: ceil($font-size-base - 3); // 13px
57
57
  $font-size-base-xs: ceil($font-size-base - 5); // 11px
58
58
 
59
59
  // Background colors
60
+ $bg-base-blue: #0971b7;
60
61
  $bg-panel: #ebebeb;
61
62
  $bg-lightgrey: #f5f5f5;
62
63
  $bg-table-footer: $bg-btn-secondary;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padma-assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dwayne Macgowan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-19 00:00:00.000000000 Z
11
+ date: 2016-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties