pure-css-rails 0.0.1 → 0.0.2
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.
- data.tar.gz.sig +0 -0
- data/lib/pure-css-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/pure-nr.css +258 -162
- data/vendor/assets/stylesheets/pure.css +324 -196
- metadata +2 -2
- metadata.gz.sig +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure v0.
|
2
|
+
Pure v0.2.0
|
3
3
|
Copyright 2013 Yahoo! Inc. All rights reserved.
|
4
4
|
Licensed under the BSD License.
|
5
5
|
https://github.com/yui/pure/blob/master/LICENSE.md
|
@@ -550,20 +550,17 @@ table {
|
|
550
550
|
-webkit-user-drag: none;
|
551
551
|
-webkit-user-select: none;
|
552
552
|
-moz-user-select: none;
|
553
|
+
-ms-user-select: none;
|
553
554
|
user-select: none;
|
554
555
|
}
|
555
556
|
|
556
|
-
|
557
557
|
/* Firefox: Get rid of the inner focus border */
|
558
|
-
.pure-button::-moz-focus-inner{
|
558
|
+
.pure-button::-moz-focus-inner {
|
559
559
|
padding: 0;
|
560
560
|
border: 0;
|
561
561
|
}
|
562
562
|
|
563
|
-
|
564
|
-
outline: none;
|
565
|
-
}
|
566
|
-
|
563
|
+
/*csslint unqualified-attributes:false, outline-none:false*/
|
567
564
|
|
568
565
|
.pure-button {
|
569
566
|
font-size: 100%;
|
@@ -577,8 +574,6 @@ a:focus {
|
|
577
574
|
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
|
578
575
|
background-color: #E6E6E6;
|
579
576
|
text-decoration: none;
|
580
|
-
-webkit-border-radius: 2px;
|
581
|
-
-moz-border-radius: 2px;
|
582
577
|
border-radius: 2px;
|
583
578
|
-webkit-font-smoothing: antialiased;
|
584
579
|
/* Transitions */
|
@@ -589,30 +584,29 @@ a:focus {
|
|
589
584
|
transition: 0.1s linear box-shadow;
|
590
585
|
}
|
591
586
|
|
592
|
-
|
593
587
|
.pure-button-hover,
|
594
|
-
.pure-button:hover
|
595
|
-
|
596
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#
|
597
|
-
|
598
|
-
background-image: -webkit-gradient(
|
599
|
-
background-image: -
|
600
|
-
background-image: -
|
601
|
-
background-image: -
|
602
|
-
background-image:
|
603
|
-
|
588
|
+
.pure-button:hover,
|
589
|
+
.pure-button:focus {
|
590
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
|
591
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
|
592
|
+
background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
593
|
+
background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
|
594
|
+
background-image: -ms-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
595
|
+
background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
596
|
+
background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
597
|
+
}
|
598
|
+
.pure-button:focus {
|
599
|
+
outline: 0;
|
604
600
|
}
|
605
|
-
|
606
601
|
.pure-button-active,
|
607
602
|
.pure-button:active {
|
608
|
-
-webkit-box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
|
609
|
-
-moz-box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
|
610
603
|
box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
|
611
604
|
}
|
612
605
|
|
613
606
|
.pure-button[disabled],
|
614
607
|
.pure-button-disabled,
|
615
608
|
.pure-button-disabled:hover,
|
609
|
+
.pure-button-disabled:focus,
|
616
610
|
.pure-button-disabled:active {
|
617
611
|
border: none;
|
618
612
|
background-image: none;
|
@@ -626,7 +620,7 @@ a:focus {
|
|
626
620
|
}
|
627
621
|
|
628
622
|
.pure-button-hidden {
|
629
|
-
display:none;
|
623
|
+
display: none;
|
630
624
|
}
|
631
625
|
|
632
626
|
/* Firefox: Get rid of the inner focus border */
|
@@ -635,8 +629,6 @@ a:focus {
|
|
635
629
|
border: 0;
|
636
630
|
}
|
637
631
|
|
638
|
-
|
639
|
-
/* Sam */
|
640
632
|
.pure-button-primary,
|
641
633
|
.pure-button-selected,
|
642
634
|
a.pure-button-primary,
|
@@ -645,10 +637,6 @@ a.pure-button-selected {
|
|
645
637
|
color: #fff;
|
646
638
|
}
|
647
639
|
|
648
|
-
.pure-button:-moz-focusring {
|
649
|
-
outline-color: rgba(0, 0, 0, 0.85);
|
650
|
-
}
|
651
|
-
|
652
640
|
/* This page has Normalize.css form-specific style rules applied to a .pure-form context */
|
653
641
|
|
654
642
|
/* ==========
|
@@ -799,204 +787,312 @@ a.pure-button-selected {
|
|
799
787
|
vertical-align: top; /* 2 */
|
800
788
|
}
|
801
789
|
|
802
|
-
.pure-form input,
|
803
|
-
.pure-form
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
790
|
+
.pure-form input[type="text"],
|
791
|
+
.pure-form input[type="password"],
|
792
|
+
.pure-form input[type="email"],
|
793
|
+
.pure-form input[type="url"],
|
794
|
+
.pure-form input[type="date"],
|
795
|
+
.pure-form input[type="month"],
|
796
|
+
.pure-form input[type="time"],
|
797
|
+
.pure-form input[type="datetime"],
|
798
|
+
.pure-form input[type="datetime-local"],
|
799
|
+
.pure-form input[type="week"],
|
800
|
+
.pure-form input[type="number"],
|
801
|
+
.pure-form input[type="search"],
|
802
|
+
.pure-form input[type="tel"],
|
803
|
+
.pure-form input[type="color"],
|
804
|
+
.pure-form select,
|
805
|
+
.pure-form textarea {
|
806
|
+
padding: 0.5em 0.6em;
|
807
|
+
display: inline-block;
|
808
|
+
border: 1px solid #ccc;
|
809
|
+
font-size: 0.8em;
|
810
|
+
box-shadow: inset 0 1px 3px #ddd;
|
811
|
+
border-radius: 4px;
|
812
|
+
-webkit-transition: 0.3s linear border;
|
813
|
+
-moz-transition: 0.3s linear border;
|
814
|
+
-ms-transition: 0.3s linear border;
|
815
|
+
-o-transition: 0.3s linear border;
|
816
|
+
transition: 0.3s linear border;
|
817
|
+
-webkit-box-sizing: border-box;
|
818
|
+
-moz-box-sizing: border-box;
|
819
|
+
box-sizing: border-box;
|
820
|
+
-webkit-font-smoothing: antialiased;
|
821
|
+
}
|
822
|
+
|
823
|
+
.pure-form input[type="text"]:focus,
|
824
|
+
.pure-form input[type="password"]:focus,
|
825
|
+
.pure-form input[type="email"]:focus,
|
826
|
+
.pure-form input[type="url"]:focus,
|
827
|
+
.pure-form input[type="date"]:focus,
|
828
|
+
.pure-form input[type="month"]:focus,
|
829
|
+
.pure-form input[type="time"]:focus,
|
830
|
+
.pure-form input[type="datetime"]:focus,
|
831
|
+
.pure-form input[type="datetime-local"]:focus,
|
832
|
+
.pure-form input[type="week"]:focus,
|
833
|
+
.pure-form input[type="number"]:focus,
|
834
|
+
.pure-form input[type="search"]:focus,
|
835
|
+
.pure-form input[type="tel"]:focus,
|
836
|
+
.pure-form input[type="color"]:focus,
|
837
|
+
.pure-form select:focus,
|
838
|
+
.pure-form textarea:focus {
|
839
|
+
outline: 0;
|
840
|
+
outline: thin dotted \9; /* IE6-9 */
|
841
|
+
border-color: #129FEA;
|
842
|
+
}
|
843
|
+
|
844
|
+
.pure-form input[type="file"]:focus,
|
845
|
+
.pure-form input[type="radio"]:focus,
|
846
|
+
.pure-form input[type="checkbox"]:focus {
|
847
|
+
outline: thin dotted #333;
|
848
|
+
outline: 1px auto #129FEA;
|
826
849
|
}
|
827
850
|
.pure-form .pure-checkbox,
|
828
851
|
.pure-form .pure-radio {
|
829
|
-
|
830
|
-
|
852
|
+
margin: 0.5em 0;
|
853
|
+
display: block;
|
831
854
|
}
|
832
|
-
.pure-form input[disabled],
|
855
|
+
.pure-form input[type="text"][disabled],
|
856
|
+
.pure-form input[type="password"][disabled],
|
857
|
+
.pure-form input[type="email"][disabled],
|
858
|
+
.pure-form input[type="url"][disabled],
|
859
|
+
.pure-form input[type="date"][disabled],
|
860
|
+
.pure-form input[type="month"][disabled],
|
861
|
+
.pure-form input[type="time"][disabled],
|
862
|
+
.pure-form input[type="datetime"][disabled],
|
863
|
+
.pure-form input[type="datetime-local"][disabled],
|
864
|
+
.pure-form input[type="week"][disabled],
|
865
|
+
.pure-form input[type="number"][disabled],
|
866
|
+
.pure-form input[type="search"][disabled],
|
867
|
+
.pure-form input[type="tel"][disabled],
|
868
|
+
.pure-form input[type="color"][disabled],
|
833
869
|
.pure-form select[disabled],
|
834
870
|
.pure-form textarea[disabled],
|
835
871
|
.pure-form input[readonly],
|
836
872
|
.pure-form select[readonly],
|
837
873
|
.pure-form textarea[readonly] {
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
874
|
+
cursor: not-allowed;
|
875
|
+
background-color: #eaeded;
|
876
|
+
color: #cad2d3;
|
877
|
+
border-color: transparent;
|
842
878
|
}
|
843
879
|
.pure-form input:focus:invalid,
|
844
880
|
.pure-form textarea:focus:invalid,
|
845
881
|
.pure-form select:focus:invalid {
|
846
|
-
|
847
|
-
|
882
|
+
color: #b94a48;
|
883
|
+
border: 1px solid #ee5f5b;
|
848
884
|
}
|
849
885
|
.pure-form input:focus:invalid:focus,
|
850
886
|
.pure-form textarea:focus:invalid:focus,
|
851
887
|
.pure-form select:focus:invalid:focus {
|
852
|
-
|
888
|
+
border-color: #e9322d;
|
889
|
+
}
|
890
|
+
.pure-form input[type="file"]:focus:invalid:focus,
|
891
|
+
.pure-form input[type="radio"]:focus:invalid:focus,
|
892
|
+
.pure-form input[type="checkbox"]:focus:invalid:focus {
|
893
|
+
outline-color: #e9322d;
|
853
894
|
}
|
854
895
|
.pure-form select {
|
855
|
-
|
856
|
-
|
896
|
+
border: 1px solid #ccc;
|
897
|
+
background-color: white;
|
857
898
|
}
|
858
899
|
.pure-form select[multiple] {
|
859
|
-
|
900
|
+
height: auto;
|
860
901
|
}
|
861
902
|
.pure-form label {
|
862
|
-
|
863
|
-
|
864
|
-
|
903
|
+
margin: 0.5em 0 0.2em;
|
904
|
+
color: #999;
|
905
|
+
font-size: 90%;
|
865
906
|
}
|
866
907
|
.pure-form fieldset {
|
867
|
-
|
868
|
-
|
869
|
-
|
908
|
+
margin: 0;
|
909
|
+
padding: 0.35em 0 0.75em;
|
910
|
+
border: 0;
|
870
911
|
}
|
871
912
|
.pure-form legend {
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
}
|
880
|
-
|
881
|
-
.pure-form
|
882
|
-
.pure-form
|
883
|
-
.pure-form
|
884
|
-
|
913
|
+
display: block;
|
914
|
+
width: 100%;
|
915
|
+
padding: 0.3em 0;
|
916
|
+
margin-bottom: 0.3em;
|
917
|
+
font-size: 125%;
|
918
|
+
color: #333;
|
919
|
+
border-bottom: 1px solid #e5e5e5;
|
920
|
+
}
|
921
|
+
|
922
|
+
.pure-form-stacked input[type="text"],
|
923
|
+
.pure-form-stacked input[type="password"],
|
924
|
+
.pure-form-stacked input[type="email"],
|
925
|
+
.pure-form-stacked input[type="url"],
|
926
|
+
.pure-form-stacked input[type="date"],
|
927
|
+
.pure-form-stacked input[type="month"],
|
928
|
+
.pure-form-stacked input[type="time"],
|
929
|
+
.pure-form-stacked input[type="datetime"],
|
930
|
+
.pure-form-stacked input[type="datetime-local"],
|
931
|
+
.pure-form-stacked input[type="week"],
|
932
|
+
.pure-form-stacked input[type="number"],
|
933
|
+
.pure-form-stacked input[type="search"],
|
934
|
+
.pure-form-stacked input[type="tel"],
|
935
|
+
.pure-form-stacked input[type="color"],
|
936
|
+
.pure-form-stacked select,
|
937
|
+
.pure-form-stacked label {
|
938
|
+
display: block;
|
885
939
|
}
|
886
940
|
|
887
941
|
.pure-form-aligned input,
|
888
942
|
.pure-form-aligned textarea,
|
889
943
|
.pure-form-aligned select,
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
944
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
945
|
+
.pure-form-aligned .pure-help-inline,
|
946
|
+
.pure-form-message-inline {
|
947
|
+
display: inline-block;
|
948
|
+
*display: inline;
|
949
|
+
*zoom: 1;
|
950
|
+
vertical-align: middle;
|
895
951
|
}
|
896
952
|
|
897
|
-
/*
|
953
|
+
/* Aligned Forms */
|
898
954
|
.pure-form-aligned .pure-control-group {
|
899
|
-
|
955
|
+
margin-bottom: 0.5em;
|
900
956
|
}
|
901
957
|
.pure-form-aligned .pure-control-group label {
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
958
|
+
text-align: right;
|
959
|
+
display: inline-block;
|
960
|
+
vertical-align: middle;
|
961
|
+
width: 10em;
|
962
|
+
margin: 0 1em 0 0;
|
907
963
|
}
|
908
964
|
.pure-form-aligned .pure-controls {
|
909
|
-
|
965
|
+
margin: 1.5em 0 0 10em;
|
910
966
|
}
|
911
967
|
|
912
968
|
/* Rounded Inputs */
|
913
969
|
.pure-form .pure-input-rounded {
|
914
|
-
|
915
|
-
|
970
|
+
border-radius: 20px;
|
971
|
+
padding-left: 1em;
|
916
972
|
}
|
917
973
|
|
918
974
|
/* Grouped Inputs */
|
919
975
|
.pure-form .pure-group fieldset {
|
920
|
-
|
976
|
+
margin-bottom: 10px;
|
921
977
|
}
|
922
978
|
.pure-form .pure-group input {
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
979
|
+
display: block;
|
980
|
+
padding: 10px;
|
981
|
+
margin: 0;
|
982
|
+
border-radius: 0;
|
983
|
+
position: relative;
|
984
|
+
top: -1px;
|
929
985
|
}
|
930
986
|
.pure-form .pure-group input:focus {
|
931
|
-
|
987
|
+
z-index: 2;
|
932
988
|
}
|
933
989
|
.pure-form .pure-group input:first-child {
|
934
|
-
|
935
|
-
|
990
|
+
top: 1px;
|
991
|
+
border-radius: 4px 4px 0 0;
|
936
992
|
}
|
937
993
|
.pure-form .pure-group input:last-child {
|
938
|
-
|
939
|
-
|
994
|
+
top: -2px;
|
995
|
+
border-radius: 0 0 4px 4px;
|
940
996
|
}
|
941
997
|
.pure-form .pure-group button {
|
942
|
-
|
998
|
+
margin: 0.35em 0;
|
943
999
|
}
|
944
1000
|
|
945
1001
|
.pure-form .pure-input-1 {
|
946
|
-
|
1002
|
+
width: 100%;
|
947
1003
|
}
|
948
1004
|
.pure-form .pure-input-2-3 {
|
949
|
-
|
1005
|
+
width: 66%;
|
950
1006
|
}
|
951
1007
|
.pure-form .pure-input-1-2 {
|
952
|
-
|
1008
|
+
width: 50%;
|
953
1009
|
}
|
954
1010
|
.pure-form .pure-input-1-3 {
|
955
|
-
|
1011
|
+
width: 33%;
|
956
1012
|
}
|
957
1013
|
.pure-form .pure-input-1-4 {
|
958
|
-
|
1014
|
+
width: 25%;
|
959
1015
|
}
|
960
1016
|
|
961
1017
|
/* Inline help for forms */
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
1018
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
1019
|
+
.pure-form .pure-help-inline,
|
1020
|
+
.pure-form-message-inline {
|
1021
|
+
display: inline-block;
|
1022
|
+
padding-left: 0.3em;
|
1023
|
+
color: #666;
|
1024
|
+
vertical-align: middle;
|
1025
|
+
font-size: 90%;
|
1026
|
+
}
|
1027
|
+
|
1028
|
+
/* Block help for forms */
|
1029
|
+
.pure-form-message {
|
1030
|
+
display: block;
|
1031
|
+
color: #666;
|
1032
|
+
font-size: 90%;
|
968
1033
|
}
|
969
1034
|
|
970
1035
|
@media only screen and (max-width : 480px) {
|
971
|
-
|
972
|
-
|
973
|
-
|
1036
|
+
.pure-form button[type="submit"] {
|
1037
|
+
margin: 0.7em 0 0;
|
1038
|
+
}
|
974
1039
|
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
1040
|
+
.pure-form input[type="text"],
|
1041
|
+
.pure-form input[type="password"],
|
1042
|
+
.pure-form input[type="email"],
|
1043
|
+
.pure-form input[type="url"],
|
1044
|
+
.pure-form input[type="date"],
|
1045
|
+
.pure-form input[type="month"],
|
1046
|
+
.pure-form input[type="time"],
|
1047
|
+
.pure-form input[type="datetime"],
|
1048
|
+
.pure-form input[type="datetime-local"],
|
1049
|
+
.pure-form input[type="week"],
|
1050
|
+
.pure-form input[type="number"],
|
1051
|
+
.pure-form input[type="search"],
|
1052
|
+
.pure-form input[type="tel"],
|
1053
|
+
.pure-form input[type="color"],
|
1054
|
+
.pure-form label {
|
1055
|
+
margin-bottom: 0.3em;
|
1056
|
+
display: block;
|
1057
|
+
}
|
979
1058
|
|
980
|
-
|
981
|
-
|
982
|
-
|
1059
|
+
.pure-group input[type="text"],
|
1060
|
+
.pure-form input[type="password"],
|
1061
|
+
.pure-form input[type="email"],
|
1062
|
+
.pure-form input[type="url"],
|
1063
|
+
.pure-form input[type="date"],
|
1064
|
+
.pure-form input[type="month"],
|
1065
|
+
.pure-form input[type="time"],
|
1066
|
+
.pure-form input[type="datetime"],
|
1067
|
+
.pure-form input[type="datetime-local"],
|
1068
|
+
.pure-form input[type="week"],
|
1069
|
+
.pure-form input[type="number"],
|
1070
|
+
.pure-form input[type="search"],
|
1071
|
+
.pure-form input[type="tel"],
|
1072
|
+
.pure-form input[type="color"] {
|
1073
|
+
margin-bottom: 0;
|
1074
|
+
}
|
983
1075
|
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
1076
|
+
.pure-form-aligned .pure-control-group label {
|
1077
|
+
margin-bottom: 0.3em;
|
1078
|
+
text-align: left;
|
1079
|
+
display: block;
|
1080
|
+
width: 100%;
|
1081
|
+
}
|
990
1082
|
|
991
|
-
|
992
|
-
|
993
|
-
|
1083
|
+
.pure-form-aligned .pure-controls {
|
1084
|
+
margin: 1.5em 0 0 0;
|
1085
|
+
}
|
994
1086
|
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1087
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
1088
|
+
.pure-form .pure-help-inline,
|
1089
|
+
.pure-form-message-inline,
|
1090
|
+
.pure-form-message {
|
1091
|
+
display: block;
|
1092
|
+
font-size: 80%;
|
1093
|
+
/* Increased bottom padding to make it group with its related input element. */
|
1094
|
+
padding: 0.2em 0 0.8em;
|
1095
|
+
}
|
1000
1096
|
}
|
1001
1097
|
|
1002
1098
|
.pure-g {
|
@@ -1017,7 +1113,8 @@ a.pure-button-selected {
|
|
1017
1113
|
|
1018
1114
|
.pure-u {
|
1019
1115
|
display: inline-block;
|
1020
|
-
|
1116
|
+
*display: inline; /* IE < 8: fake inline-block */
|
1117
|
+
zoom: 1;
|
1021
1118
|
letter-spacing: normal;
|
1022
1119
|
word-spacing: normal;
|
1023
1120
|
vertical-align: top;
|
@@ -1053,7 +1150,8 @@ a.pure-button-selected {
|
|
1053
1150
|
.pure-u-19-24,
|
1054
1151
|
.pure-u-23-24 {
|
1055
1152
|
display: inline-block;
|
1056
|
-
|
1153
|
+
*display: inline; /* IE < 8: fake inline-block */
|
1154
|
+
zoom: 1;
|
1057
1155
|
letter-spacing: normal;
|
1058
1156
|
word-spacing: normal;
|
1059
1157
|
vertical-align: top;
|
@@ -1172,6 +1270,8 @@ a.pure-button-selected {
|
|
1172
1270
|
width: 95.8333%;
|
1173
1271
|
}
|
1174
1272
|
|
1273
|
+
/*csslint regex-selectors:false, unqualified-attributes:false*/
|
1274
|
+
|
1175
1275
|
.pure-g-r {
|
1176
1276
|
letter-spacing: -0.31em;
|
1177
1277
|
*letter-spacing: normal;
|
@@ -1191,7 +1291,7 @@ a.pure-button-selected {
|
|
1191
1291
|
max-width: 100%;
|
1192
1292
|
}
|
1193
1293
|
|
1194
|
-
@media (min-width:980px) {
|
1294
|
+
@media (min-width: 980px) {
|
1195
1295
|
.pure-visible-phone {
|
1196
1296
|
display: none;
|
1197
1297
|
}
|
@@ -1202,13 +1302,15 @@ a.pure-button-selected {
|
|
1202
1302
|
display: none;
|
1203
1303
|
}
|
1204
1304
|
}
|
1205
|
-
|
1305
|
+
|
1306
|
+
@media (max-width: 480px) {
|
1206
1307
|
.pure-g-r > .pure-u,
|
1207
1308
|
.pure-g-r > [class *= "pure-u-"] {
|
1208
1309
|
width: 100%;
|
1209
1310
|
}
|
1210
1311
|
}
|
1211
|
-
|
1312
|
+
|
1313
|
+
@media (max-width: 767px) {
|
1212
1314
|
.pure-g-r > .pure-u,
|
1213
1315
|
.pure-g-r > [class *= "pure-u-"] {
|
1214
1316
|
width: 100%;
|
@@ -1220,7 +1322,8 @@ a.pure-button-selected {
|
|
1220
1322
|
display: none;
|
1221
1323
|
}
|
1222
1324
|
}
|
1223
|
-
|
1325
|
+
|
1326
|
+
@media (min-width: 768px) and (max-width: 979px) {
|
1224
1327
|
.pure-hidden-tablet {
|
1225
1328
|
display: none;
|
1226
1329
|
}
|
@@ -1229,6 +1332,9 @@ a.pure-button-selected {
|
|
1229
1332
|
}
|
1230
1333
|
}
|
1231
1334
|
|
1335
|
+
/*csslint adjoining-classes:false, outline-none:false*/
|
1336
|
+
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
1337
|
+
|
1232
1338
|
.pure-menu ul {
|
1233
1339
|
position: absolute;
|
1234
1340
|
visibility: hidden;
|
@@ -1257,9 +1363,14 @@ a.pure-button-selected {
|
|
1257
1363
|
visibility: visible;
|
1258
1364
|
}
|
1259
1365
|
|
1366
|
+
.pure-menu-open > ul:focus {
|
1367
|
+
outline: 0;
|
1368
|
+
}
|
1369
|
+
|
1260
1370
|
.pure-menu li { position: relative; }
|
1261
1371
|
|
1262
|
-
.pure-menu a,
|
1372
|
+
.pure-menu a,
|
1373
|
+
.pure-menu .pure-menu-heading {
|
1263
1374
|
display: block;
|
1264
1375
|
color: inherit;
|
1265
1376
|
line-height: 1.5em;
|
@@ -1270,16 +1381,17 @@ a.pure-button-selected {
|
|
1270
1381
|
|
1271
1382
|
.pure-menu.pure-menu-horizontal > .pure-menu-heading {
|
1272
1383
|
display: inline-block;
|
1273
|
-
margin: 0;
|
1274
|
-
zoom: 1;
|
1275
1384
|
*display: inline;
|
1385
|
+
zoom: 1;
|
1386
|
+
margin: 0;
|
1276
1387
|
vertical-align: middle;
|
1277
1388
|
}
|
1278
1389
|
.pure-menu.pure-menu-horizontal > ul {
|
1279
1390
|
display: inline-block;
|
1280
|
-
zoom: 1;
|
1281
1391
|
*display: inline;
|
1392
|
+
zoom: 1;
|
1282
1393
|
vertical-align: middle;
|
1394
|
+
height: 2.4em;
|
1283
1395
|
}
|
1284
1396
|
|
1285
1397
|
.pure-menu li a { padding: 5px 20px; }
|
@@ -1287,13 +1399,14 @@ a.pure-button-selected {
|
|
1287
1399
|
.pure-menu-can-have-children > .pure-menu-label:after {
|
1288
1400
|
content: '\25B8';
|
1289
1401
|
float: right;
|
1290
|
-
|
1402
|
+
/* These specific fonts have the Unicode char we need. */
|
1403
|
+
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif;
|
1291
1404
|
margin-right: -20px;
|
1292
1405
|
margin-top: -1px;
|
1293
1406
|
}
|
1294
1407
|
|
1295
1408
|
.pure-menu-can-have-children > .pure-menu-label {
|
1296
|
-
padding-right:30px;
|
1409
|
+
padding-right: 30px;
|
1297
1410
|
}
|
1298
1411
|
|
1299
1412
|
.pure-menu-separator {
|
@@ -1305,13 +1418,15 @@ a.pure-button-selected {
|
|
1305
1418
|
overflow: hidden;
|
1306
1419
|
}
|
1307
1420
|
|
1308
|
-
.pure-menu-hidden {
|
1421
|
+
.pure-menu-hidden {
|
1422
|
+
display: none;
|
1423
|
+
}
|
1309
1424
|
|
1310
1425
|
/* FIXED MENU */
|
1311
1426
|
.pure-menu-fixed {
|
1312
1427
|
position: fixed;
|
1313
|
-
top:0;
|
1314
|
-
left:0;
|
1428
|
+
top: 0;
|
1429
|
+
left: 0;
|
1315
1430
|
width: 100%;
|
1316
1431
|
}
|
1317
1432
|
|
@@ -1321,12 +1436,12 @@ a.pure-button-selected {
|
|
1321
1436
|
/* Initial menus should be inline-block so that they are horizontal */
|
1322
1437
|
.pure-menu-horizontal li {
|
1323
1438
|
display: inline-block;
|
1324
|
-
zoom: 1;
|
1325
1439
|
*display: inline;
|
1440
|
+
zoom: 1;
|
1326
1441
|
vertical-align: middle;
|
1327
1442
|
}
|
1328
1443
|
|
1329
|
-
/* Submenus should still be display:block; */
|
1444
|
+
/* Submenus should still be display: block; */
|
1330
1445
|
.pure-menu-horizontal li li {
|
1331
1446
|
display: block;
|
1332
1447
|
}
|
@@ -1337,25 +1452,42 @@ a.pure-button-selected {
|
|
1337
1452
|
}
|
1338
1453
|
/*Add extra padding to elements that have the arrow so that the hover looks nice */
|
1339
1454
|
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label {
|
1340
|
-
padding-right:30px;
|
1455
|
+
padding-right: 30px;
|
1456
|
+
}
|
1457
|
+
|
1458
|
+
/* Adjusting separator for vertical menus */
|
1459
|
+
.pure-menu-horizontal li.pure-menu-separator {
|
1460
|
+
height: 50%;
|
1461
|
+
width: 1px;
|
1462
|
+
margin: 0 7px;
|
1341
1463
|
}
|
1342
1464
|
|
1465
|
+
/* Submenus should be horizontal separator again */
|
1466
|
+
.pure-menu-horizontal li li.pure-menu-separator {
|
1467
|
+
height: 1px;
|
1468
|
+
width: auto;
|
1469
|
+
margin: 7px 2px;
|
1470
|
+
}
|
1471
|
+
|
1472
|
+
|
1473
|
+
/*csslint adjoining-classes:false*/
|
1474
|
+
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
1343
1475
|
|
1344
1476
|
/* MAIN MENU STYLING */
|
1345
1477
|
|
1346
1478
|
.pure-menu.pure-menu-open,
|
1347
1479
|
.pure-menu.pure-menu-horizontal li .pure-menu-children {
|
1348
|
-
background: #
|
1480
|
+
background: #fff; /* Old browsers */
|
1349
1481
|
border: 1px solid #b7b7b7;
|
1350
1482
|
}
|
1351
1483
|
|
1352
1484
|
/* remove borders for horizontal menus */
|
1353
|
-
.pure-menu.pure-menu-horizontal,
|
1485
|
+
.pure-menu.pure-menu-horizontal,
|
1486
|
+
.pure-menu.pure-menu-horizontal .pure-menu-heading {
|
1354
1487
|
border: none;
|
1355
1488
|
}
|
1356
1489
|
|
1357
1490
|
|
1358
|
-
|
1359
1491
|
/* LINK STYLES */
|
1360
1492
|
|
1361
1493
|
.pure-menu a {
|
@@ -1374,15 +1506,20 @@ a.pure-button-selected {
|
|
1374
1506
|
color: #fff;
|
1375
1507
|
}
|
1376
1508
|
|
1509
|
+
/* Focus style for a dropdown menu-item when the parent has been opened */
|
1510
|
+
.pure-menu .pure-menu-open {
|
1511
|
+
background: #dedede;
|
1512
|
+
}
|
1377
1513
|
|
1378
1514
|
|
1379
|
-
|
1380
|
-
.pure-menu li a:
|
1515
|
+
.pure-menu li a:hover,
|
1516
|
+
.pure-menu li a:focus {
|
1381
1517
|
background: #eee;
|
1382
1518
|
}
|
1383
1519
|
|
1384
1520
|
/* DISABLED STATES */
|
1385
|
-
.pure-menu li.pure-menu-disabled a:hover
|
1521
|
+
.pure-menu li.pure-menu-disabled a:hover,
|
1522
|
+
.pure-menu li.pure-menu-disabled a:focus {
|
1386
1523
|
background: #fff;
|
1387
1524
|
color: #bfbfbf;
|
1388
1525
|
}
|
@@ -1402,8 +1539,8 @@ a.pure-button-selected {
|
|
1402
1539
|
.pure-menu .pure-menu-heading {
|
1403
1540
|
color: #565d64;
|
1404
1541
|
text-transform: uppercase;
|
1405
|
-
font-size:90%;
|
1406
|
-
margin-top:0.5em;
|
1542
|
+
font-size: 90%;
|
1543
|
+
margin-top: 0.5em;
|
1407
1544
|
border-bottom-width: 1px;
|
1408
1545
|
border-bottom-style: solid;
|
1409
1546
|
border-bottom-color: #dfdfdf;
|
@@ -1420,6 +1557,9 @@ a.pure-button-selected {
|
|
1420
1557
|
border-bottom: 1px solid #b7b7b7;
|
1421
1558
|
}
|
1422
1559
|
|
1560
|
+
/*csslint box-model:false*/
|
1561
|
+
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
1562
|
+
|
1423
1563
|
.pure-paginator {
|
1424
1564
|
list-style: none;
|
1425
1565
|
margin: 0;
|
@@ -1428,8 +1568,7 @@ a.pure-button-selected {
|
|
1428
1568
|
.pure-paginator li {
|
1429
1569
|
display: inline-block;
|
1430
1570
|
*display: inline;
|
1431
|
-
|
1432
|
-
*zoom: 1;
|
1571
|
+
zoom: 1;
|
1433
1572
|
margin: 0 -0.35em 0 0;
|
1434
1573
|
}
|
1435
1574
|
.pure-paginator .pure-button {
|
@@ -1441,9 +1580,10 @@ a.pure-button-selected {
|
|
1441
1580
|
.pure-paginator .pure-button:focus {
|
1442
1581
|
outline-style: none;
|
1443
1582
|
}
|
1444
|
-
.pure-paginator .prev,
|
1583
|
+
.pure-paginator .prev,
|
1584
|
+
.pure-paginator .next {
|
1445
1585
|
color: #C0C1C3;
|
1446
|
-
text-shadow:
|
1586
|
+
text-shadow: 0 -1px 0 rgba(0,0,0, 0.45);
|
1447
1587
|
}
|
1448
1588
|
.pure-paginator .prev {
|
1449
1589
|
border-radius: 2px 0 0 2px;
|
@@ -1452,29 +1592,17 @@ a.pure-button-selected {
|
|
1452
1592
|
border-radius: 0 2px 2px 0;
|
1453
1593
|
}
|
1454
1594
|
|
1455
|
-
/* RESPONSIVE */
|
1456
|
-
|
1457
1595
|
@media (max-width: 480px) {
|
1458
|
-
|
1459
1596
|
.pure-menu-horizontal {
|
1460
|
-
width:100%;
|
1597
|
+
width: 100%;
|
1461
1598
|
}
|
1462
1599
|
|
1463
1600
|
.pure-menu-children li {
|
1464
1601
|
display: block;
|
1465
|
-
border-bottom:1px solid
|
1602
|
+
border-bottom: 1px solid black;
|
1466
1603
|
}
|
1467
|
-
|
1468
1604
|
}
|
1469
1605
|
|
1470
|
-
/*
|
1471
|
-
* CSS TABLES
|
1472
|
-
* ==========
|
1473
|
-
* Simple CSS for HTML Tables
|
1474
|
-
* Author: tilomitra
|
1475
|
-
*/
|
1476
|
-
|
1477
|
-
/* foundational CSS */
|
1478
1606
|
.pure-table {
|
1479
1607
|
/* Remove spacing between table cells (from Normalize.css) */
|
1480
1608
|
border-collapse: collapse;
|
@@ -1515,7 +1643,7 @@ a.pure-button-selected {
|
|
1515
1643
|
/*
|
1516
1644
|
striping:
|
1517
1645
|
even - #fff (white)
|
1518
|
-
odd - #
|
1646
|
+
odd - #f2f2f2 (light gray)
|
1519
1647
|
*/
|
1520
1648
|
.pure-table td {
|
1521
1649
|
background-color: transparent;
|
@@ -1531,7 +1659,7 @@ striping:
|
|
1531
1659
|
|
1532
1660
|
/* BORDERED TABLES */
|
1533
1661
|
.pure-table-bordered td {
|
1534
|
-
border-bottom:1px solid #cbcbcb;
|
1662
|
+
border-bottom: 1px solid #cbcbcb;
|
1535
1663
|
}
|
1536
1664
|
.pure-table-bordered tbody > tr:last-child td,
|
1537
1665
|
.pure-table-horizontal tbody > tr:last-child td {
|
@@ -1544,7 +1672,7 @@ striping:
|
|
1544
1672
|
.pure-table-horizontal td,
|
1545
1673
|
.pure-table-horizontal th {
|
1546
1674
|
border-width: 0 0 1px 0;
|
1547
|
-
border-bottom:1px solid #cbcbcb;
|
1675
|
+
border-bottom: 1px solid #cbcbcb;
|
1548
1676
|
}
|
1549
1677
|
.pure-table-horizontal tbody > tr:last-child td {
|
1550
1678
|
border-bottom-width: 0;
|