-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbootstrap-rtl.css
101 lines (101 loc) · 2.56 KB
/
bootstrap-rtl.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.rtl {
direction: rtl;
}
.rtl ul,
.rtl ol {
margin: 0 25px 10px 0;
}
.rtl ul.inline,
.rtl ol.inline {
margin-right: 0;
}
.rtl dd {
margin-right: 10px;
}
.rtl .dl-horizontal dt {
float: right;
}
.rtl .dl-horizontal dd {
margin-right: 180px;
}
.rtl code {
direction: ltr;
}
.rtl .table th,
.rtl .table td {
text-align: right;
}
.rtl .table-bordered thead:first-child tr:first-child > th:first-child,
.rtl .table-bordered tbody:first-child tr:first-child > td:first-child,
.rtl .table-bordered tbody:first-child tr:first-child > th:first-child {
-webkit-border-top-left-radius: 0;
border-top-left-radius: 0;
-moz-border-radius-topleft: 0;
border-top-right-radius: 4px;
}
.rtl .table-bordered thead:last-child tr:last-child > th:first-child,
.rtl .table-bordered tbody:last-child tr:last-child > td:first-child,
.rtl .table-bordered tbody:last-child tr:last-child > th:first-child,
.rtl .table-bordered tfoot:last-child tr:last-child > td:first-child,
.rtl .table-bordered tfoot:last-child tr:last-child > th:first-child {
-webkit-border-bottom-left-radius: 0;
border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-right-radius: 4px;
}
.rtl .radio input[type="radio"],
.rtl .checkbox input[type="checkbox"] {
float: right;
margin-right: -20px;
margin-left: 0;
}
.rtl .form-search .radio input[type="radio"],
.rtl .form-search .checkbox input[type="checkbox"],
.rtl .form-inline .radio input[type="radio"],
.rtl .form-inline .checkbox input[type="checkbox"] {
float: right;
margin-right: 0;
margin-left: 3px;
}
.rtl .form-horizontal .control-label {
float: right;
text-align: left;
}
.rtl .form-horizontal .controls {
margin-right: 180px;
margin-left: 0;
}
.rtl .radio, .checkbox {
padding-right: 20px;
padding-left: 0;
}
.rtl .input-prepend .add-on,
.rtl .input-prepend .btn {
margin-left: -1px;
margin-right: 0;
}
.rtl .input-prepend .add-on:first-child,
.rtl .input-prepend .btn:first-child {
border-radius: 0 4px 4px 0;
}
.rtl .input-prepend input,
.rtl .input-prepend select,
.rtl .input-prepend .uneditable-input {
border-radius: 4px 0 0 4px;
}
.rtl .input-append input,
.rtl .input-append select,
.rtl .input-append .uneditable-input {
border-radius: 0 4px 4px 0;
}
.rtl .input-append .add-on:last-child
.rtl .input-append .btn:last-child,
.rtl .input-append .btn-group:last-child > .dropdown-toggle {
border-radius: 4px 0 0 4px;
}
.rtl .input-append .add-on,
.rtl .input-append .btn,
.rtl .input-append .btn-group {
margin-right: -1px;
margin-left: 0;
}