checkbox.min.css
1 year ago
common.css
1 year ago
common.rtl.css
1 year ago
media.css
1 year ago
mobile.css
1 year ago
mobile.rtl.css
1 year ago
restore.css
1 year ago
style.css
1 day ago
vars.css
1 year ago
vars.rtl.css
1 year ago
common.rtl.css
118 lines
| 1 | html[dir=rtl] #menu { |
| 2 | left: auto; |
| 3 | right: 0; |
| 4 | box-shadow: 10px 0 20px 0 rgba(0,0,0,0.1); |
| 5 | } |
| 6 | |
| 7 | html[dir=rtl] #container { |
| 8 | margin-left: 0; |
| 9 | margin-right: 230px; |
| 10 | transition: margin-right 200ms; |
| 11 | } |
| 12 | |
| 13 | html[dir=rtl] ul#navigation li a span { |
| 14 | margin-left: 0; |
| 15 | margin-right: 10px; |
| 16 | } |
| 17 | |
| 18 | html[dir=rtl] .menu-closed #container { |
| 19 | margin-left: 0; |
| 20 | margin-right: 73px; |
| 21 | } |
| 22 | |
| 23 | html[dir=rtl] .dropdown ul { |
| 24 | box-shadow: 0 0 20px 0 rgba(0,0,0,0.1); |
| 25 | } |
| 26 | |
| 27 | html[dir=rtl] .text-right { |
| 28 | text-align: left; |
| 29 | } |
| 30 | |
| 31 | html[dir=rtl] .rounded-widget .icon { |
| 32 | padding: 0 10px 0 20px; |
| 33 | } |
| 34 | |
| 35 | html[dir=rtl] .box-title div { |
| 36 | display: table-cell; |
| 37 | vertical-align: middle; |
| 38 | padding: 10px 10px 10px 0; |
| 39 | } |
| 40 | |
| 41 | html[dir=rtl] .btn span { |
| 42 | margin-left: 0; |
| 43 | margin-right: 5px; |
| 44 | } |
| 45 | |
| 46 | html[dir=rtl] .dropdown button { |
| 47 | text-align: right; |
| 48 | } |
| 49 | |
| 50 | html[dir=rtl] .dropdown button:after { |
| 51 | float: left; |
| 52 | } |
| 53 | |
| 54 | html[dir=rtl] .dropdown button.show:after { |
| 55 | transform: rotate(90deg) |
| 56 | } |
| 57 | |
| 58 | html[dir=rtl] .radio label, html[dir=rtl] .checkbox label { |
| 59 | margin-right: 0; |
| 60 | margin-left: 10px; |
| 61 | } |
| 62 | |
| 63 | html[dir=rtl] .radio label:last-child, html[dir=rtl] .checkbox label:last-child { |
| 64 | margin-right: inherit; |
| 65 | margin-left: 0; |
| 66 | } |
| 67 | |
| 68 | html[dir=rtl] label.search-box i { |
| 69 | margin: 0 5px 0 10px; |
| 70 | } |
| 71 | |
| 72 | html[dir=rtl] ul.pagination { |
| 73 | margin-right: 0; |
| 74 | margin-left: 15px; |
| 75 | } |
| 76 | |
| 77 | html[dir=rtl] ul.pagination li { |
| 78 | margin-right: 0; |
| 79 | margin-left: 5px; |
| 80 | float: right; |
| 81 | } |
| 82 | |
| 83 | html[dir=rtl] ul.pagination li:last-child { |
| 84 | margin-right: inherit; |
| 85 | margin-left: 0; |
| 86 | } |
| 87 | |
| 88 | html[dir=rtl] #menu-bars { |
| 89 | right: auto; |
| 90 | left: 20px; |
| 91 | } |
| 92 | /*Left*/ |
| 93 | html[dir=rtl] .modal.left.fade .modal-dialog{ |
| 94 | left: auto; |
| 95 | right: -33%; |
| 96 | -webkit-transition: opacity 0.3s linear, right 0.3s ease-out; |
| 97 | -moz-transition: opacity 0.3s linear, right 0.3s ease-out; |
| 98 | -o-transition: opacity 0.3s linear, right 0.3s ease-out; |
| 99 | transition: opacity 0.3s linear, right 0.3s ease-out; |
| 100 | } |
| 101 | |
| 102 | html[dir=rtl] .modal.left.fade.show .modal-dialog{ |
| 103 | right: 0; |
| 104 | } |
| 105 | |
| 106 | /*Right*/ |
| 107 | html[dir=rtl] .modal.right.fade .modal-dialog { |
| 108 | right: auto; |
| 109 | left: -33%; |
| 110 | -webkit-transition: opacity 0.3s linear, left 0.3s ease-out; |
| 111 | -moz-transition: opacity 0.3s linear, left 0.3s ease-out; |
| 112 | -o-transition: opacity 0.3s linear, left 0.3s ease-out; |
| 113 | transition: opacity 0.3s linear, left 0.3s ease-out; |
| 114 | } |
| 115 | |
| 116 | html[dir=rtl] .modal.right.fade.show .modal-dialog { |
| 117 | left: 0; |
| 118 | } |