##// END OF EJS Templates
Merge pull request #7311 from Carreau/reform-css-2...
Brian E. Granger -
r19725:a1063ffc merge
parent child Browse files
Show More
@@ -44,31 +44,25 b' ul#help_menu li a{'
44 left: 100%;
44 left: 100%;
45 margin-top: -6px;
45 margin-top: -6px;
46 margin-left: -1px;
46 margin-left: -1px;
47 -webkit-border-radius: 0 6px 6px 6px;
48 -moz-border-radius: 0 6px 6px 6px;
49 border-radius: 0 6px 6px 6px;
50 }
47 }
51
48
49 // arrow that indicate presence of submenu
52 .dropdown-submenu:hover>.dropdown-menu {
50 .dropdown-submenu:hover>.dropdown-menu {
53 display: block;
51 display: block;
54 }
52 }
55
53
56 .dropdown-submenu>a:after {
54 .dropdown-submenu>a:after {
55 .fa();
57 display: block;
56 display: block;
58 content: " ";
57 content: @fa-var-caret-right;
59 float: right;
58 float: right;
60 width: 0;
59 color: @dropdown-link-color;
61 height: 0;
60 margin-top: 2px;
62 border-color: transparent;
63 border-style: solid;
64 border-width: 5px 0 5px 5px;
65 border-left-color: #cccccc;
66 margin-top: 5px;
67 margin-right: -10px;
61 margin-right: -10px;
68 }
62 }
69
63
70 .dropdown-submenu:hover>a:after{
64 .dropdown-submenu:hover>a:after {
71 border-left-color: #ffffff;
65 color: @dropdown-link-hover-color;
72 }
66 }
73
67
74 .dropdown-submenu.pull-left {
68 .dropdown-submenu.pull-left {
@@ -78,7 +72,6 b' ul#help_menu li a{'
78 .dropdown-submenu.pull-left>.dropdown-menu {
72 .dropdown-submenu.pull-left>.dropdown-menu {
79 left: -100%;
73 left: -100%;
80 margin-left: 10px;
74 margin-left: 10px;
81 -webkit-border-radius: 6px 0 6px 6px;
82 -moz-border-radius: 6px 0 6px 6px;
83 border-radius: 6px 0 6px 6px;
84 }
75 }
76
77 //end submenu
@@ -9796,28 +9796,32 b' ul#help_menu li a i {'
9796 left: 100%;
9796 left: 100%;
9797 margin-top: -6px;
9797 margin-top: -6px;
9798 margin-left: -1px;
9798 margin-left: -1px;
9799 -webkit-border-radius: 0 6px 6px 6px;
9800 -moz-border-radius: 0 6px 6px 6px;
9801 border-radius: 0 6px 6px 6px;
9802 }
9799 }
9803 .dropdown-submenu:hover > .dropdown-menu {
9800 .dropdown-submenu:hover > .dropdown-menu {
9804 display: block;
9801 display: block;
9805 }
9802 }
9806 .dropdown-submenu > a:after {
9803 .dropdown-submenu > a:after {
9804 display: inline-block;
9805 font: normal normal normal 14px/1 FontAwesome;
9806 font-size: inherit;
9807 text-rendering: auto;
9808 -webkit-font-smoothing: antialiased;
9809 -moz-osx-font-smoothing: grayscale;
9807 display: block;
9810 display: block;
9808 content: " ";
9811 content: "\f0da";
9809 float: right;
9812 float: right;
9810 width: 0;
9813 color: #333333;
9811 height: 0;
9814 margin-top: 2px;
9812 border-color: transparent;
9813 border-style: solid;
9814 border-width: 5px 0 5px 5px;
9815 border-left-color: #cccccc;
9816 margin-top: 5px;
9817 margin-right: -10px;
9815 margin-right: -10px;
9818 }
9816 }
9817 .dropdown-submenu > a:after.pull-left {
9818 margin-right: .3em;
9819 }
9820 .dropdown-submenu > a:after.pull-right {
9821 margin-left: .3em;
9822 }
9819 .dropdown-submenu:hover > a:after {
9823 .dropdown-submenu:hover > a:after {
9820 border-left-color: #ffffff;
9824 color: #262626;
9821 }
9825 }
9822 .dropdown-submenu.pull-left {
9826 .dropdown-submenu.pull-left {
9823 float: none;
9827 float: none;
@@ -9825,9 +9829,6 b' ul#help_menu li a i {'
9825 .dropdown-submenu.pull-left > .dropdown-menu {
9829 .dropdown-submenu.pull-left > .dropdown-menu {
9826 left: -100%;
9830 left: -100%;
9827 margin-left: 10px;
9831 margin-left: 10px;
9828 -webkit-border-radius: 6px 0 6px 6px;
9829 -moz-border-radius: 6px 0 6px 6px;
9830 border-radius: 6px 0 6px 6px;
9831 }
9832 }
9832 #notification_area {
9833 #notification_area {
9833 float: right !important;
9834 float: right !important;
General Comments 0
You need to be logged in to leave comments. Login now