Changeset 175 for Dev/trunk/css/awesome.css
- Timestamp:
- 12/02/11 16:28:07 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/css/awesome.css
r168 r175 48 48 background-color: #aeb2b3; 49 49 border: 1px solid #fff; 50 -moz-border-radius: 1 5px;51 border-radius: 1 5px;50 -moz-border-radius: 1em; 51 border-radius: 1em; 52 52 margin-bottom: 2em; 53 53 padding: 0 1em 1em 1em; … … 562 562 563 563 #questionEditForm { 564 564 565 565 } 566 566 … … 610 610 611 611 background-image: -webkit-gradient( 612 613 614 615 616 617 );612 linear, 613 left top, 614 left bottom, 615 color-stop(0.21, #B0B0B0), 616 color-stop(0.8, #888888) 617 ); 618 618 background-position: bottom; 619 619 background-repeat: repeat-x; … … 626 626 overflow-x: scroll; 627 627 overflow-y: hidden; 628 628 629 629 margin-bottom: 0.5em; 630 630 631 631 background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%); 632 632 background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%); … … 635 635 background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%); 636 636 background-image: -webkit-gradient( 637 638 639 640 641 642 );643 637 linear, 638 left bottom, 639 left top, 640 color-stop(0.25, #B0B0B0), 641 color-stop(0.8, #888888) 642 ); 643 644 644 border: 1px solid #ddd; 645 645 -moz-border-radius: 0.5em; … … 664 664 float: left; 665 665 text-align: center; 666 /*display: inline-block;*/ 666 -webkit-user-select: none; 667 -khtml-user-select: none; 668 -moz-user-select: none; 669 -o-user-select: none; 670 user-select: none; 667 671 } 668 672 … … 671 675 -webkit-box-shadow: 0 0 50px #FFF; 672 676 box-shadow: 0 0 50px #FFF; 673 677 674 678 } 675 679 … … 687 691 font-size: 0.875em; 688 692 /*float: left;*/ 689 693 690 694 } 691 695 … … 730 734 731 735 background-image: -webkit-gradient( 732 733 734 735 736 737 );738 736 linear, 737 left top, 738 left bottom, 739 color-stop(0.25, #B0B0B0), 740 color-stop(0.8, #888888) 741 ); 742 739 743 } 740 744 … … 778 782 779 783 background-image: -webkit-gradient( 780 781 782 783 784 785 );784 linear, 785 left top, 786 left bottom, 787 color-stop(0.25, #B0B0B0), 788 color-stop(0.8, #888888) 789 ); 786 790 } 787 791 … … 808 812 display: block; 809 813 } 814 815 816 817 /* QUESTION EDITOR 818 */ 819 820 #questionEditor { 821 width: 60em; 822 background-color: #00FF00; 823 border: 1px solid #FFF; 824 display: block; 825 margin: 0; 826 padding: 0; 827 float: left; 828 background-color: #5c5c5c; 829 -moz-box-shadow: 2px 2px 1px #888; 830 -webkit-box-shadow: 2px 2px 1px #888; 831 box-shadow: 2px 2px 1px #888; 832 } 833 834 #questionEditor_header { 835 height: 1.5em; 836 float: left; 837 font-size: 1.25em; 838 color: #FFF; 839 padding: 0.5em 1em 0 1em; 840 } 841 842 #questionEditor_content { 843 width: 58em; 844 background-image: linear-gradient(top, #B0B0B0 21%, #888888 80%); 845 background-image: -o-linear-gradient(top, #B0B0B0 21%, #888888 80%); 846 background-image: -moz-linear-gradient(top, #B0B0B0 21%, #888888 80%); 847 background-image: -webkit-linear-gradient(top, #B0B0B0 21%, #888888 80%); 848 background-image: -ms-linear-gradient(top, #B0B0B0 21%, #888888 80%); 849 background-image: -webkit-gradient( 850 linear, 851 left top, 852 left bottom, 853 color-stop(0.21, #B0B0B0), 854 color-stop(0.8, #888888) 855 ); 856 background-position: bottom; 857 background-repeat: repeat-x; 858 float: left; 859 padding: 0.5em 1em; 860 861 } 862 863 #questionEditor_controls { 864 float: right; 865 height: 2em; 866 text-align: right; 867 } 868 869 870 871 #questionEditor_bodyText_textArea { 872 resize: none; 873 width: auto; 874 min-width: 51em; 875 border: 3px solid #cccccc; 876 background-color: white; 877 margin: 3px; 878 } 879 880 #questionEditor_bodyText_staticText { 881 color: white; 882 font-size: 12px; 883 } 884 885 .questionParamField { 886 display: inline; 887 }
Note: See TracChangeset
for help on using the changeset viewer.