blob: a911840aaeb24ba490009fe2b507d6d124142157 (
plain)
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
|
/**
* @file
* RTL companion for the pages.css file.
*/
/*
* Header
*/
/* line 13, ../../../sass/sass/pages-rtl.scss */
#logo {
/* Wrapping link for logo */
float: right;
}
/*
* Content
*/
/* line 21, ../../../sass/sass/pages-rtl.scss */
ul.inline li {
/* List of links */
display: inline-block;
/* Bug in Safari causes display: inline to fail. */
padding: 0 0 0 1em;
}
/* line 25, ../../../sass/sass/pages-rtl.scss */
span.field-label {
/* The inline field label used by the Fences.module */
padding: 0 0 0 1em;
}
|