bin/upgrading/s2layers/brittle/layout.s2
author fu
Fri Jan 27 17:59:59 2012 +0800
changeset 4240 5bab31c9f015
parent 4231 19ee0e413510
child 4302 4fc7eee083ff
permissions -rw-r--r--
http://bugs.dwscoalition.org/show_bug.cgi?id=4245

Call keywords in list context, so that we get a list instead of a comma-separated string. Add a bit of padding because we no longer have a physical comma.

Patch by fu.
afuna@1731
     1
layerinfo type = "layout";
afuna@1731
     2
layerinfo name = "Brittle";
afuna@1731
     3
layerinfo redist_uniq = "brittle/layout";
afuna@1731
     4
layerinfo author_name = "renoir";
afuna@1731
     5
afuna@1731
     6
set layout_authors = [ { "name" => "renoir", "type" => "user" } ];
afuna@1731
     7
afuna@1731
     8
##===============================
afuna@1731
     9
## Display settings - general
afuna@1731
    10
##===============================
afuna@1731
    11
afuna@1731
    12
propgroup presentation {
afuna@1731
    13
    property use num_items_recent;
afuna@1731
    14
    property use num_items_reading;
afuna@1731
    15
    property use use_journalstyle_entry_page;
afuna@1731
    16
    property use layout_type;
afuna@1731
    17
    property use tags_page_type;
afuna@1731
    18
    property use sidebar_width;
fu@3552
    19
    property use margins_size;
fu@3552
    20
    property use margins_unit;
fu@3482
    21
    property use userpics_style_group;
kareila@2632
    22
    property string entryicons_position {
kareila@2632
    23
       des = "Place icons on the same side or opposite the sidebar";
fu@3614
    24
       values = "none|None (don't show)|same|Same side as sidebar|opposite|Opposite the sidebar";
kareila@2632
    25
    }
fu@2358
    26
    property use entry_metadata_position;
afuna@1731
    27
    property use use_custom_friend_colors;
fu@2347
    28
    property use use_shared_pic;
fu@2456
    29
    property use userlite_interaction_links;
fu@2456
    30
    property use entry_management_links;
fu@2456
    31
    property use comment_management_links;
fu@4189
    32
    property use reg_firstdayofweek;
fu@3210
    33
    property use entry_datetime_format_group;
fu@3210
    34
    property use comment_datetime_format_group;
afuna@1731
    35
}
afuna@1731
    36
afuna@1731
    37
set sidebar_width = "15em";
afuna@1731
    38
set layout_type = "two-columns-right";
fu@3482
    39
set entry_userpic_style= "small";
fu@3482
    40
set comment_userpic_style= "small";
kareila@2632
    41
set entryicons_position = "opposite";
afuna@1731
    42
set use_custom_friend_colors = false;
afuna@1731
    43
set custom_foreground_element = "userpic_border";
afuna@1731
    44
set custom_background_element = "userpic_background";
afuna@1731
    45
afuna@1731
    46
##===============================
afuna@1731
    47
## Journal style - colors
afuna@1731
    48
##===============================
afuna@1731
    49
afuna@1731
    50
propgroup colors {
afuna@1731
    51
afuna@1731
    52
    property use color_page_background;
afuna@1731
    53
    property use color_page_text;
afuna@1731
    54
    property use color_page_link;
afuna@1731
    55
    property use color_page_link_hover;
afuna@1731
    56
    property use color_page_link_visited;
afuna@1731
    57
afuna@1731
    58
    property use color_footer_background;
afuna@1731
    59
    property use color_footer_link;
afuna@1731
    60
    property use color_footer_link_hover;
afuna@1731
    61
    property use color_footer_link_visited;
afuna@1731
    62
afuna@1731
    63
    property Color color_navigation_module_background { des = "Navigation module background color"; }
afuna@1731
    64
    property Color color_navigation_module_link { des = "Navigation module link color"; }
afuna@1731
    65
    property Color color_navigation_module_link_hover { des = "Navigation module hover link color"; }
afuna@1731
    66
    property Color color_navigation_module_link_visited { des = "Navigation module visited link color"; }
afuna@1731
    67
afuna@1731
    68
    property use color_entry_title;
afuna@1731
    69
    property use color_entry_background;
afuna@1731
    70
    property use color_entry_text;
afuna@1731
    71
    property use color_entry_link;
afuna@1731
    72
    property use color_entry_link_hover;
afuna@1731
    73
    property use color_entry_link_visited;
afuna@1731
    74
}
afuna@1731
    75
afuna@1731
    76
afuna@1731
    77
##===============================
afuna@1731
    78
## Display settings - fonts
afuna@1731
    79
##===============================
afuna@1731
    80
afuna@1731
    81
propgroup fonts {
afuna@1731
    82
    property use font_base;
afuna@1731
    83
    property use font_fallback;
afuna@1731
    84
    property use font_base_size;
afuna@1731
    85
    property use font_base_units;
afuna@1731
    86
afuna@1731
    87
    property string font_entry_text {
afuna@1731
    88
        des = "Preferred font for entry text";
fu@4132
    89
        maxlength = 50;
fu@4132
    90
        size = 25;
afuna@1731
    91
        note = "For example: Arial or \"Times New Roman\". Leave blank if you don't care.";
afuna@1731
    92
        }
afuna@1731
    93
    property string font_entry_text_size {
afuna@1731
    94
        des = "Size of entry text font";
afuna@1731
    95
        size = 3;
afuna@1731
    96
        }
afuna@1731
    97
    property string font_entry_text_units {
afuna@1731
    98
        des = "Units for entry text size";
afuna@1731
    99
        values = "em|em|ex|ex|%|%|pt|pt|px|px";
afuna@1731
   100
    }
afuna@1731
   101
    property use font_entry_title;
afuna@1731
   102
    property use font_entry_title_size;
afuna@1731
   103
    property use font_entry_title_units;
fu@3057
   104
    property use font_comment_title;
fu@3057
   105
    property use font_comment_title_size;
fu@3057
   106
    property use font_comment_title_units;
afuna@1731
   107
afuna@1731
   108
    property string font_navigation_module_text {
afuna@1731
   109
        des = "Preferred font for navigation module text";
fu@4132
   110
        maxlength = 50;
fu@4132
   111
        size = 25;
afuna@1731
   112
        note = "For example: Arial or \"Times New Roman\". Leave blank if you don't care.";
afuna@1731
   113
        }
afuna@1731
   114
    property string font_navigation_module_text_size {
afuna@1731
   115
        des = "Size of navigation module text font";
afuna@1731
   116
        size = 3;
afuna@1731
   117
        }
afuna@1731
   118
    property string font_navigation_module_text_units {
afuna@1731
   119
        des = "Units for navigation module text size";
afuna@1731
   120
        values = "em|em|ex|ex|%|%|pt|pt|px|px";
afuna@1731
   121
        }
afuna@1731
   122
    property use font_module_heading;
afuna@1731
   123
    property use font_module_heading_size;
afuna@1731
   124
    property use font_module_heading_units;
afuna@1731
   125
    property string font_other_module_text {
afuna@1731
   126
        des = "Preferred font for module text other than navigation module";
fu@4132
   127
        maxlength = 50;
fu@4132
   128
        size = 25;
afuna@1731
   129
        note = "For example: Arial or \"Times New Roman\". Leave blank if you don't care.";
afuna@1731
   130
        }
afuna@1731
   131
    property string font_other_module_text_size {
afuna@1731
   132
        des = "Size of module text font other than navigation module";
afuna@1731
   133
        size = 3;
afuna@1731
   134
        }
afuna@1731
   135
    property string font_other_module_text_units {
afuna@1731
   136
        des = "Units for module text size other than navigation module";
afuna@1731
   137
        values = "em|em|ex|ex|%|%|pt|pt|px|px";
afuna@1731
   138
        }
afuna@1731
   139
afuna@1731
   140
    property string font_date_time {
afuna@1731
   141
        des = "Preferred font for date and time in entries and comments";
fu@4132
   142
        maxlength = 50;
fu@4132
   143
        size = 25;
afuna@1731
   144
        note = "For example: Arial or \"Times New Roman\". Leave blank if you don't care.";
afuna@1731
   145
        }
afuna@1731
   146
    property string font_date_time_size {
afuna@1731
   147
        des = "Size of font for date and time in entries and comments";
afuna@1731
   148
        size = 3;
afuna@1731
   149
        }
afuna@1731
   150
    property string font_date_time_units {
afuna@1731
   151
        des = "Units for date and time in entries and comments text size";
afuna@1731
   152
        values = "em|em|ex|ex|%|%|pt|pt|px|px";
afuna@1731
   153
        }
afuna@1731
   154
afuna@1731
   155
}
afuna@1731
   156
afuna@1731
   157
afuna@1731
   158
set font_base = "Georgia";
afuna@1731
   159
set font_fallback = "sans-serif";
afuna@1731
   160
set font_base_size = "1";
afuna@1731
   161
set font_base_units = "em";
afuna@1731
   162
afuna@1731
   163
set font_entry_text = "Georgia";
afuna@1731
   164
set font_entry_text_size = "0.95";
afuna@1731
   165
set font_entry_text_units = "em";
afuna@1731
   166
set font_entry_title = "Georgia";
afuna@1731
   167
set font_entry_title_size = "0.7";
afuna@1731
   168
set font_entry_title_units = "em";
afuna@1731
   169
afuna@1731
   170
set font_navigation_module_text = "Georgia";
afuna@1731
   171
set font_navigation_module_text_size = "0.8";
afuna@1731
   172
set font_navigation_module_text_units = "em";
afuna@1731
   173
set font_other_module_text = "Georgia";
afuna@1731
   174
set font_other_module_text_size = "0.8";
afuna@1731
   175
set font_other_module_text_units = "em";
afuna@1731
   176
set font_module_heading = "Georgia";
afuna@1731
   177
set font_module_heading_size = "1";
afuna@1731
   178
set font_module_heading_units = "em";
afuna@1731
   179
afuna@1731
   180
set font_date_time = "Helvetica";
afuna@1731
   181
set font_date_time_size = "0.6";
afuna@1731
   182
set font_date_time_units = "em";
afuna@1731
   183
afuna@1731
   184
##===============================
afuna@1731
   185
## Display settings - images
afuna@1731
   186
##===============================
afuna@1731
   187
afuna@1731
   188
propgroup images {
afuna@1731
   189
    property use image_background_page_group;
afuna@1731
   190
    property use image_background_entry_group;
afuna@1731
   191
}
afuna@1731
   192
afuna@1731
   193
##===============================
afuna@1731
   194
## Display settings - modules
afuna@1731
   195
##===============================
afuna@1731
   196
afuna@1731
   197
propgroup modules {
afuna@1731
   198
    property use module_userprofile_group;
afuna@1731
   199
    property use module_navlinks_group;
afuna@1731
   200
    property use module_customtext_group;
afuna@1731
   201
    property use module_calendar_group;
afuna@1731
   202
    property use module_pagesummary_group;
afuna@1731
   203
    property use module_tags_group;
mark@1972
   204
    property use module_active_group;
afuna@1731
   205
    property use module_links_group;
afuna@1731
   206
    property use module_syndicate_group;
afuna@1731
   207
    property use module_time_group;
afuna@1731
   208
    property use module_poweredby_group;
afuna@1731
   209
    property use module_credit_group;
fu@2382
   210
    property use module_search_group;
fu@3465
   211
    property use module_cuttagcontrols_group;
afuna@1731
   212
}
afuna@1731
   213
afuna@1731
   214
# explicitly define what sections the layout has available
afuna@1731
   215
set module_layout_sections = "none|(none)|one|Group One|two|Group Two";
afuna@1731
   216
afuna@1731
   217
# set module order and sections
afuna@1731
   218
set module_navlinks_order = 1;
afuna@1731
   219
set module_navlinks_section = "one";
afuna@1731
   220
set module_customtext_order = 2;
afuna@1731
   221
set module_customtext_section = "one";
afuna@1731
   222
set module_userprofile_order = 3;
afuna@1731
   223
set module_userprofile_section = "two";
afuna@1731
   224
set module_links_order = 5;
afuna@1731
   225
set module_links_section = "two";
afuna@1731
   226
set module_syndicate_order = 6;
afuna@1731
   227
set module_syndicate_section = "two";
afuna@1731
   228
set module_tags_order = 7;
afuna@1731
   229
set module_tags_section = "two";
afuna@1731
   230
set module_pagesummary_order = 8;
afuna@1731
   231
set module_pagesummary_section = "two";
afuna@1994
   232
set module_active_order = 9;
afuna@1994
   233
set module_active_section = "two";
afuna@1731
   234
set module_credit_order = 10;
afuna@1731
   235
set module_credit_section = "two";
afuna@1731
   236
set module_calendar_order = 13;
afuna@1731
   237
set module_calendar_section = "two";
afuna@1731
   238
set module_calendar_opts_type = "horizontal";
afuna@1731
   239
afuna@1731
   240
##===============================
afuna@1731
   241
## Custom CSS
afuna@1731
   242
##===============================
afuna@1731
   243
afuna@1731
   244
propgroup customcss {
afuna@1731
   245
    property use external_stylesheet;
afuna@1731
   246
    property use include_default_stylesheet;
afuna@1731
   247
    property use linked_stylesheet;
afuna@1731
   248
    property use custom_css;
afuna@1731
   249
}
afuna@1731
   250
afuna@1731
   251
propgroup text {
afuna@1731
   252
##===============================
afuna@1731
   253
## Text - main navigation
afuna@1731
   254
##===============================
afuna@1731
   255
afuna@1731
   256
    property use text_view_recent;
afuna@1731
   257
    property use text_view_friends;
afuna@1731
   258
    property use text_view_network;
afuna@1731
   259
    property use text_view_archive;
afuna@1731
   260
    property use text_view_userinfo;
afuna@1731
   261
    property use text_view_memories;
afuna@1731
   262
    property use text_view_tags;
afuna@1731
   263
afuna@1731
   264
##===============================
afuna@1731
   265
## Text - entry comment-related
afuna@1731
   266
##===============================
afuna@1731
   267
afuna@1731
   268
    property use text_post_comment;
afuna@1731
   269
    property use text_max_comments;
afuna@1731
   270
    property use text_read_comments;
afuna@1731
   271
    property use text_post_comment_friends;
afuna@1731
   272
    property use text_read_comments_friends;
afuna@1731
   273
afuna@1731
   274
    property use text_skiplinks_back;
afuna@1731
   275
    property use text_skiplinks_forward;
afuna@1731
   276
    property use text_meta_music;
afuna@1731
   277
    property use text_meta_mood;
afuna@1731
   278
    property use text_meta_location;
fu@3354
   279
    property use text_meta_xpost;
afuna@1731
   280
    property use text_tags;
afuna@1731
   281
afuna@1731
   282
    property use text_entry_prev;
afuna@1731
   283
    property use text_entry_next;
afuna@1731
   284
    property use text_edit_entry;
afuna@1731
   285
    property use text_edit_tags;
afuna@1731
   286
    property use text_tell_friend;
afuna@1731
   287
    property use text_mem_add;
afuna@1731
   288
    property use text_watch_comments;
afuna@1731
   289
    property use text_unwatch_comments;
afuna@1731
   290
    property use text_permalink;
afuna@1731
   291
    property use text_stickyentry_subject;
afuna@1731
   292
afuna@1731
   293
    property use text_module_customtext;
afuna@1731
   294
    property use text_module_customtext_content;
afuna@1731
   295
    property use text_module_customtext_url;
afuna@1731
   296
}
afuna@1731
   297
fu@3614
   298
function prop_init() {
fu@3614
   299
    if ( $*entryicons_position == "none" ) {
fu@3614
   300
        $*userpics_position = "none";
fu@3614
   301
    }
fu@3614
   302
}
fu@3614
   303
afuna@1731
   304
function Page::print_default_stylesheet() {
kareila@2648
   305
kareila@2648
   306
    var string sidebar_position = "";
kareila@2648
   307
    var string sidebar_position_opposite = "";
kareila@2648
   308
kareila@2648
   309
    if ($*layout_type == "two-columns-right") { $sidebar_position = "right"; $sidebar_position_opposite = "left"; }
kareila@2648
   310
    elseif ($*layout_type == "two-columns-left") { $sidebar_position = "left"; $sidebar_position_opposite = "right"; }
kareila@2648
   311
afuna@1731
   312
    var string page_background = generate_background_css ($*image_background_page_url, $*image_background_page_repeat, $*image_background_page_position, $*color_page_background);
afuna@1731
   313
    var string entry_background = generate_background_css ($*image_background_entry_url, $*image_background_entry_repeat, $*image_background_entry_position, $*color_entry_background);
afuna@1731
   314
fu@2977
   315
    var string page_font = generate_font_css("", $*font_base, $*font_fallback, $*font_base_size, $*font_base_units);
fu@2977
   316
    var string entry_font = generate_font_css($*font_entry_text, $*font_base, $*font_fallback, $*font_entry_text_size, $*font_entry_text_units);
fu@2977
   317
    var string entry_title_font = generate_font_css($*font_entry_title, $*font_base, $*font_fallback, $*font_entry_title_size, $*font_entry_title_units);
fu@3057
   318
    var string comment_title_font = generate_font_css($*font_comment_title, $*font_base, $*font_fallback, $*font_comment_title_size, $*font_comment_title_units);
fu@2977
   319
    var string module_title_font = generate_font_css($*font_module_heading, $*font_base, $*font_fallback, $*font_module_heading_size, $*font_module_heading_units);
fu@2977
   320
    var string navigation_module_font = generate_font_css($*font_navigation_module_text, $*font_base, $*font_fallback, $*font_navigation_module_text_size, $*font_navigation_module_text_units);
fu@2977
   321
    var string other_module_font = generate_font_css($*font_other_module_text, $*font_base, $*font_fallback, $*font_other_module_text_size, $*font_other_module_text_units);
fu@2977
   322
    var string date_time_font = generate_font_css($*font_date_time, $*font_base, $*font_fallback, $*font_date_time_size, $*font_date_time_units);
fu@2977
   323
    var string input_textarea_font = generate_font_css($*font_date_time, $*font_base, $*font_fallback, "", "");
afuna@1731
   324
afuna@1731
   325
    var Color bottom_border = $*color_entry_text -> lighter(90);
afuna@1731
   326
    var Color solid_border = $*color_entry_background -> darker(25);
afuna@1731
   327
    var Color blockquote_text = $*color_entry_text -> lighter(10);
afuna@1731
   328
    var Color blockquote_background = $*color_entry_background -> darker(10);
afuna@1731
   329
fu@3482
   330
    var string entry_userpic_margin = "";
fu@3482
   331
    if ( $*entry_userpic_style == "" ) { $entry_userpic_margin = "130px"; }
fu@3482
   332
    elseif ( $*entry_userpic_style == "small" ) { $entry_userpic_margin = "105px"; }
fu@3482
   333
    elseif ( $*entry_userpic_style == "smaller" ) { $entry_userpic_margin = "80px"; }
fu@3482
   334
fu@3482
   335
    var string comment_userpic_margin = "";
fu@3482
   336
    if ( $*comment_userpic_style == "" ) { $comment_userpic_margin = "140px"; }
fu@3482
   337
    elseif ( $*comment_userpic_style == "small" ) { $comment_userpic_margin = "115px"; }
fu@3482
   338
    elseif ( $*comment_userpic_style == "smaller" ) { $comment_userpic_margin = "90px"; }
fu@3482
   339
kareila@2632
   340
    var string entryicon_css = "";
kareila@2632
   341
    if ($*entryicons_position == "opposite") {
kareila@2632
   342
        $entryicon_css = """
fu@4150
   343
        .entry .userpic,
fu@4150
   344
        .comment .userpic {
kareila@2648
   345
            float: $sidebar_position_opposite;
fu@2704
   346
            text-align: $sidebar_position;
fu@2494
   347
            }
fu@4150
   348
        .entry .userpic {
fu@3482
   349
            margin-$sidebar_position_opposite: -$entry_userpic_margin;
fu@3482
   350
            }
fu@4150
   351
        .comment .userpic {
fu@3482
   352
            margin-$sidebar_position_opposite: -$comment_userpic_margin;
fu@2494
   353
            }
fu@2494
   354
        """;
fu@2494
   355
    }
kareila@2632
   356
    elseif ($*entryicons_position == "same") {
kareila@2632
   357
        $entryicon_css = """
fu@4150
   358
        .entry .userpic,
fu@4150
   359
        .comment .userpic {
kareila@2648
   360
            float: $sidebar_position;
fu@2704
   361
            text-align: $sidebar_position;
fu@2494
   362
            }
fu@4150
   363
        .entry .userpic{
fu@3482
   364
            margin-$sidebar_position: -$entry_userpic_margin;
fu@3482
   365
            }
fu@4150
   366
        .comment .userpic {
fu@3482
   367
            margin-$sidebar_position: -$comment_userpic_margin;
fu@2494
   368
            }
fu@2494
   369
        #secondary {
fu@3482
   370
            margin-$sidebar_position_opposite: $entry_userpic_margin;
fu@3482
   371
            }
fu@2494
   372
        """;
fu@2494
   373
    }
afuna@1731
   374
afuna@1731
   375
    """
afuna@1731
   376
body {
afuna@1731
   377
    padding: 0;
afuna@1731
   378
    $page_background
afuna@1731
   379
    $page_font
afuna@1731
   380
    color: $*color_page_text;
afuna@1731
   381
    line-height: 1.6em;
afuna@1731
   382
    text-align: center;
afuna@1731
   383
    }
afuna@1731
   384
fu@3552
   385
    html body {
fu@3552
   386
        margin-left: $*margins_size$*margins_unit;
fu@3552
   387
        margin-right: $*margins_size$*margins_unit;
fu@3552
   388
        }
fu@3552
   389
afuna@1731
   390
img { border: none; }
afuna@1731
   391
afuna@1731
   392
a { text-decoration: none; }
afuna@1731
   393
a, a:link { color: $*color_page_link;   }
afuna@1731
   394
a:visited { color: $*color_page_link_visited; }
afuna@1731
   395
a:hover { color: $*color_page_link_hover; }
afuna@1731
   396
fu@2217
   397
q { font-style: italic; }
fu@2217
   398
afuna@1731
   399
#canvas {
afuna@1731
   400
    margin: 0 auto;
kareila@2648
   401
    padding: 5% 0;
kareila@2648
   402
    padding-$sidebar_position_opposite: 15%;
afuna@1731
   403
    text-align: justify;
afuna@1731
   404
    width: 85%;
afuna@1731
   405
}
afuna@1731
   406
afuna@1731
   407
#primary {
kareila@2648
   408
    float: $sidebar_position_opposite;
afuna@1731
   409
    width: 45%;
afuna@1731
   410
    text-align: justify;
kareila@2648
   411
    margin: 0;
kareila@2648
   412
    margin-$sidebar_position: .6em;
afuna@1731
   413
    }
afuna@1731
   414
afuna@1731
   415
#secondary {
kareila@2648
   416
    float: $sidebar_position_opposite;
afuna@1731
   417
    width: $*sidebar_width;
afuna@1731
   418
    margin: 1px 0 0 0;
afuna@1731
   419
    padding: 0 1em;
afuna@1731
   420
    font-size: 1em;
afuna@1731
   421
}
afuna@1731
   422
afuna@1731
   423
#tertiary {
fu@2976
   424
    background-color: $*color_entry_background;
afuna@1731
   425
    clear: both;
fu@2976
   426
    color: $*color_entry_text;
fu@2976
   427
    line-height: 125%;
kareila@2648
   428
    margin-$sidebar_position: auto;
afuna@1731
   429
    width: 45%;
afuna@1731
   430
    }
afuna@1731
   431
afuna@1731
   432
#tertiary > .inner:first-child { }
afuna@1731
   433
afuna@1731
   434
#tertiary .separator-after { clear: both; }
afuna@1731
   435
afuna@1731
   436
afuna@1731
   437
/*--- header + footer ---*/
afuna@1731
   438
afuna@1731
   439
#header { display: none; }
afuna@1731
   440
#footer {
afuna@1731
   441
    background: $*color_footer_background;
afuna@1731
   442
    width: 45%;
afuna@1731
   443
    font-size: 0.7em;
afuna@1731
   444
    text-transform: lowercase;
afuna@1731
   445
    clear: both;
afuna@1731
   446
    margin-top: 10px;
kareila@2648
   447
    margin-$sidebar_position: auto;
afuna@1731
   448
}
afuna@1731
   449
fu@3622
   450
#footer a, #footer a:link, #footer a:active { color: $*color_footer_link; }
fu@3622
   451
#footer a:visited { color: $*color_footer_link_visited; }
fu@3622
   452
#footer a:hover { color: $*color_footer_link_hover; }
afuna@1731
   453
afuna@1731
   454
#footer .inner { padding: 10px; }
afuna@1731
   455
afuna@1731
   456
afuna@1731
   457
/*--- prev/next navigation ---*/
afuna@1731
   458
afuna@1731
   459
li.page-back, li.page-forward {
afuna@1731
   460
    display: inline;
afuna@1731
   461
    list-style: none;
afuna@1731
   462
    padding: 0;
afuna@1731
   463
    margin: 0;
afuna@1731
   464
    }
afuna@1731
   465
afuna@1731
   466
li.page-separator { display: none; }
afuna@1731
   467
fu@4150
   468
.navigation ul {
afuna@1731
   469
    display: inline;
afuna@1731
   470
    padding: 0;
afuna@1731
   471
    margin: 0;
afuna@1731
   472
    }
afuna@1731
   473
afuna@1731
   474
afuna@1731
   475
/*--- entry ---*/
afuna@1731
   476
afuna@1731
   477
.entry {
afuna@1731
   478
    $entry_background
afuna@1731
   479
    color: $*color_entry_text;
afuna@1731
   480
    padding: 10px;
afuna@1731
   481
    margin: 0 0 10px 0;
afuna@1731
   482
    $entry_font
afuna@1731
   483
    }
afuna@1731
   484
fu@2976
   485
.entry a, #tertiary a {
fu@2976
   486
    color: $*color_entry_link;
fu@2976
   487
    }
fu@2976
   488
fu@2976
   489
.entry a:visited, #tertiary a:visited {
fu@2976
   490
    color: $*color_entry_link_visited;
fu@2976
   491
    }
fu@2976
   492
fu@2976
   493
.entry a:hover, #tertiary a:hover {
fu@2976
   494
    color: $*color_entry_link_hover;
fu@2976
   495
    }
fu@2976
   496
afuna@1731
   497
.entry-content { margin: 10px 0 0 0; }
afuna@1731
   498
afuna@1731
   499
.entry .header {
afuna@1731
   500
    padding: 0;
afuna@1731
   501
    margin: 0 0 10px 0;
afuna@1731
   502
    border-bottom: 1px dotted $bottom_border;
afuna@1731
   503
    }
afuna@1731
   504
afuna@1731
   505
h3.entry-title {
afuna@1731
   506
    margin: 0;
afuna@1731
   507
    padding: 0;
afuna@1731
   508
    $entry_title_font
afuna@1731
   509
    font-weight: normal;
afuna@1731
   510
    text-transform: lowercase;
afuna@1731
   511
    letter-spacing: 1px;
afuna@1731
   512
    color: $*color_entry_title;
afuna@1731
   513
    }
afuna@1731
   514
afuna@1731
   515
h3.entry-title a { color: $*color_entry_title; }
afuna@1731
   516
afuna@1731
   517
.datetime {
afuna@1731
   518
    $date_time_font
afuna@1731
   519
    text-transform: uppercase;
afuna@1731
   520
    color: $*color_entry_title;
afuna@1731
   521
    }
afuna@1731
   522
.datetime a { color: $*color_entry_title; }
afuna@1731
   523
fu@4150
   524
.entry .userpic {
afuna@1731
   525
    display: block;
fu@2704
   526
    margin: 0;
afuna@1731
   527
    }
afuna@1731
   528
fu@4150
   529
.entry .userpic img {
afuna@1731
   530
    border: 5px solid $*color_navigation_module_background;
afuna@1731
   531
    }
afuna@1731
   532
fu@4150
   533
.poster {
afuna@1731
   534
    $date_time_font
afuna@1731
   535
    text-transform: uppercase;
afuna@1731
   536
    }
afuna@1731
   537
afuna@1731
   538
.metadata { margin: 1.25em 0 0 0; }
afuna@1731
   539
fu@2358
   540
.metadata.top-metadata { margin: 10px 0 1.25em 0; }
fu@2358
   541
fu@4150
   542
.metadata ul {
afuna@1731
   543
    padding: 0;
afuna@1731
   544
    margin: 0;
afuna@1731
   545
    }
afuna@1731
   546
fu@4150
   547
.metadata ul li {
afuna@1731
   548
    list-style: none;
afuna@1731
   549
    font-size: 60%;
afuna@1731
   550
    font-weight: normal;
afuna@1731
   551
    text-transform: lowercase;
afuna@1731
   552
    color: $*color_entry_title;
afuna@1731
   553
    letter-spacing: 0;
afuna@1731
   554
    padding: 0;
afuna@1731
   555
    }
afuna@1731
   556
fu@4150
   557
.tag-text {
afuna@1731
   558
    font-size: 60%;
afuna@1731
   559
    text-transform: lowercase;
afuna@1731
   560
    }
afuna@1731
   561
fu@4150
   562
.tag ul {
afuna@1731
   563
    padding: 0 0 0 13px;
afuna@1731
   564
    margin: 0;
afuna@1731
   565
    display: inline;
afuna@1731
   566
    }
afuna@1731
   567
fu@4150
   568
.tag ul li {
afuna@1731
   569
    display: inline;
afuna@1731
   570
    list-style: none;
afuna@1731
   571
    font-size: 60%;
afuna@1731
   572
    font-weight: normal;
afuna@1731
   573
    text-transform: lowercase;
afuna@1731
   574
    color: $*color_entry_title;
afuna@1731
   575
    letter-spacing: 0;
afuna@1731
   576
    padding: 0;
afuna@1731
   577
    }
afuna@1731
   578
afuna@1731
   579
ul.entry-management-links {
afuna@1731
   580
    padding: 0;
afuna@1731
   581
    margin: 10px 0 0 0;
afuna@1731
   582
    }
afuna@1731
   583
afuna@1731
   584
ul.entry-management-links li {
afuna@1731
   585
    display: inline;
afuna@1731
   586
    list-style: none;
afuna@1731
   587
    font-size: 60%;
afuna@1731
   588
    font-weight: normal;
afuna@1731
   589
    text-transform: lowercase;
afuna@1731
   590
    color: $*color_entry_title;
afuna@1731
   591
    letter-spacing: 0;
afuna@1731
   592
    padding: 0 5px 0 0;
afuna@1731
   593
    }
afuna@1731
   594
afuna@1731
   595
ul.entry-interaction-links {
afuna@1731
   596
    padding: 0 0 5px 0;
afuna@1731
   597
    margin: 10px 0 0 0;
afuna@1731
   598
    text-align: center;
afuna@1731
   599
    }
afuna@1731
   600
afuna@1731
   601
ul.entry-interaction-links li {
afuna@1731
   602
    display: inline;
afuna@1731
   603
    list-style: none;
afuna@1731
   604
    font-size: 65%;
afuna@1731
   605
    font-weight: normal;
afuna@1731
   606
    text-transform: uppercase;
afuna@1731
   607
    color: $*color_entry_title;
afuna@1731
   608
    letter-spacing: 0;
afuna@1731
   609
    padding: 0 5px 0 0;
afuna@1731
   610
    }
afuna@1731
   611
afuna@1731
   612
afuna@1731
   613
/*-- archive --*/
afuna@1731
   614
afuna@1731
   615
li.active {
afuna@1731
   616
    list-style: none;
afuna@1731
   617
    display: inline;
afuna@1731
   618
    padding: 0;
afuna@1731
   619
    margin: 10px;
afuna@1731
   620
    }
afuna@1731
   621
afuna@1731
   622
.month {
afuna@1731
   623
    background-color: $*color_entry_background;
fu@3622
   624
    color: $*color_entry_text;
afuna@1731
   625
    padding: 20px;
afuna@1731
   626
    margin: 0;
afuna@1731
   627
    }
afuna@1731
   628
afuna@1731
   629
.month h3 {
afuna@1731
   630
    $entry_title_font
afuna@1731
   631
    font-weight: normal;
afuna@1731
   632
    text-transform: lowercase;
afuna@1731
   633
    letter-spacing: 1px;
afuna@1731
   634
    padding: 0;
afuna@1731
   635
    margin: 0;
afuna@1731
   636
    text-align: right;
afuna@1731
   637
    }
afuna@1731
   638
fu@3622
   639
.month a {
fu@3622
   640
    color: $*color_entry_link;
fu@3622
   641
    }
fu@3622
   642
fu@3622
   643
.month a:visited {
fu@3622
   644
    color: $*color_entry_link_visited;
fu@3622
   645
    }
fu@3622
   646
fu@3622
   647
.month a:hover {
fu@3622
   648
    color: $*color_entry_link_hover;
fu@3622
   649
    }
fu@3622
   650
afuna@1731
   651
.navigation ul { display: inline; }
afuna@1731
   652
.navigation li { display: inline; list-style: none; }
afuna@1731
   653
afuna@1731
   654
table.month { border: 0; }
afuna@1731
   655
.month caption { display: none; }
afuna@1731
   656
.month th {
afuna@1731
   657
    text-align: center;
afuna@1731
   658
    margin: 0 2px;
afuna@1731
   659
    text-transform: lowercase;
afuna@1731
   660
    font-weight: normal;
afuna@1731
   661
    }
afuna@1731
   662
.month td.day {
afuna@1731
   663
    font-weight: normal;
afuna@1731
   664
    color: $*color_entry_title;
afuna@1731
   665
    }
afuna@1731
   666
.month td.day-has-entries {
afuna@1731
   667
    font-weight: normal;
afuna@1731
   668
    color: $*color_entry_title;
afuna@1731
   669
    }
afuna@1731
   670
.month td.day-has-entries p {
afuna@1731
   671
    padding: 0 0 0 5px;
afuna@1731
   672
    margin: 0;
afuna@1731
   673
    display: inline;
afuna@1731
   674
    }
afuna@1731
   675
.month table {
afuna@1731
   676
    width: 100%;
afuna@1731
   677
    border: 0;
afuna@1731
   678
    margin: auto;
afuna@1731
   679
    }
afuna@1731
   680
afuna@1731
   681
td.day {
afuna@1731
   682
    padding: 10px;
afuna@1731
   683
    border: 0;
afuna@1731
   684
    text-align: center;
afuna@1731
   685
    }
afuna@1731
   686
afuna@1731
   687
afuna@1731
   688
/*-- tags --*/
afuna@1731
   689
afuna@1731
   690
.page-tags .tags-container {
afuna@1731
   691
    background-color: $*color_entry_background;
fu@3622
   692
    color: $*color_entry_text;
afuna@1731
   693
    $entry_font
afuna@1731
   694
    padding: 10px;
afuna@1731
   695
    margin: 0 0 10px 0;
afuna@1731
   696
    }
afuna@1731
   697
afuna@1731
   698
.page-tags .tags-container h2 {
afuna@1731
   699
    margin: 0 0 10px 0;
afuna@1731
   700
    padding: 0;
afuna@1731
   701
    $entry_title_font
afuna@1731
   702
    border-width: 0 0 1px 0;
afuna@1731
   703
    border-style: dotted;
afuna@1731
   704
    border-color: $bottom_border;
afuna@1731
   705
    font-weight: normal;
afuna@1731
   706
    text-transform: lowercase;
afuna@1731
   707
    letter-spacing: 1px;
afuna@1731
   708
    color: $*color_entry_title;
afuna@1731
   709
    }
afuna@1731
   710
afuna@1731
   711
.page-tags .ljtaglist { margin: 0; padding: 0; }
afuna@1731
   712
.page-tags .ljtaglist li {
afuna@1731
   713
    padding: 0 0 0 10px;
afuna@1731
   714
    margin: 0;
afuna@1731
   715
    text-transform: lowercase;
afuna@1731
   716
    letter-spacing: 0;
afuna@1731
   717
    list-style: none;
afuna@1731
   718
    }
fu@3622
   719
fu@3622
   720
.page-tags .tags-container a {
fu@3622
   721
    color: $*color_entry_link;
fu@3622
   722
    }
fu@3622
   723
fu@3622
   724
.page-tags .tags-container a:visited {
fu@3622
   725
    color: $*color_entry_link_visited;
fu@3622
   726
    }
fu@3622
   727
fu@3622
   728
.page-tags .tags-container a:hover {
fu@3622
   729
    color: $*color_entry_link_hover;
fu@3622
   730
    }
fu@3622
   731
afuna@1731
   732
.page-tags .tags_cloud { text-align: center; }
afuna@1731
   733
fu@4217
   734
/*-- icons page --*/
fu@4217
   735
fu@4217
   736
.icons-container {
fu@4217
   737
    background-color: $*color_entry_background;
fu@4217
   738
    color: $*color_entry_text;
fu@4217
   739
    $entry_font
fu@4217
   740
    padding: 10px;
fu@4217
   741
    margin: 0 0 10px;
fu@4217
   742
    }
fu@4217
   743
fu@4217
   744
.icons-container h2 {
fu@4217
   745
    border-color: $bottom_border;
fu@4217
   746
    border-style: dotted;
fu@4217
   747
    border-width: 0 0 1px 0;
fu@4217
   748
    color: $*color_entry_title;
fu@4217
   749
    $entry_title_font
fu@4217
   750
    font-weight: normal;
fu@4217
   751
    letter-spacing: 1px;
fu@4217
   752
    margin: 0 0 10px 0;
fu@4217
   753
    padding: 0;
fu@4217
   754
    text-transform: lowercase;
fu@4217
   755
    }
fu@4217
   756
fu@4217
   757
.icons-container a {
fu@4217
   758
    color: $*color_entry_link;
fu@4217
   759
    }
fu@4217
   760
fu@4217
   761
.icons-container a:visited {
fu@4217
   762
    color: $*color_entry_link_visited;
fu@4217
   763
    }
fu@4217
   764
fu@4217
   765
.icons-container a:hover {
fu@4217
   766
    color: $*color_entry_link_hover;
fu@4217
   767
    }
fu@4217
   768
fu@4217
   769
.sorting-options ul {
fu@4217
   770
    padding-left: 0;
fu@4217
   771
    }
fu@4217
   772
fu@4217
   773
.sorting-options ul li {
fu@4217
   774
    display: inline;
fu@4217
   775
    list-style: none;
fu@4217
   776
    margin: 0;
fu@4217
   777
    }
fu@4217
   778
fu@4217
   779
.page-icons .comment {
fu@4217
   780
    margin: 0;
fu@4217
   781
    padding: 0;
fu@4217
   782
    }
fu@4217
   783
fu@4217
   784
.page-icons .icon {
fu@4217
   785
    margin: 1em 0;
fu@4217
   786
    }
fu@4217
   787
fu@4217
   788
.icon-image {
fu@4217
   789
    float: left;
fu@4217
   790
    clear: left;
fu@4217
   791
    margin-bottom: .25em;
fu@4217
   792
    min-width: 100px;
fu@4217
   793
    padding-right: 1em;
fu@4217
   794
    }
fu@4217
   795
fu@4217
   796
.icon-info {
fu@4217
   797
    min-height: 100px;
fu@4217
   798
    }
fu@4217
   799
fu@4217
   800
.icon-info span {
fu@4217
   801
    font-weight: bold;
fu@4217
   802
    }
fu@4217
   803
fu@4217
   804
.icon-info .default {
fu@4217
   805
    text-decoration: underline;
fu@4217
   806
    }
fu@4217
   807
fu@4217
   808
.icon-info .keywords ul {
fu@4217
   809
    display: inline;
fu@4217
   810
    padding: 0 0 0 13px;
fu@4217
   811
    }
fu@4217
   812
fu@4217
   813
.icon-info .keywords ul li {
fu@4217
   814
    display: inline;
fu@4217
   815
    list-style: none;
fu@4240
   816
    padding: 0 .25em 0 0;
fu@4217
   817
    }
fu@4217
   818
afuna@1731
   819
/*--- comments ---*/
afuna@1731
   820
fu@3057
   821
#comments {
fu@3057
   822
    $entry_font
fu@3057
   823
    }
fu@3057
   824
fu@3057
   825
.comment-title {
fu@3057
   826
    $comment_title_font
fu@3057
   827
    }
fu@3057
   828
kareila@2543
   829
.comment-title h4 {
kareila@2543
   830
    font-size: inherit;
kareila@2543
   831
    font-weight: inherit;
fu@2563
   832
    margin: 0;
fu@2563
   833
    padding: 0;
kareila@2543
   834
}
kareila@2543
   835
afuna@1731
   836
hr.above-entry-interaction-links, hr.below-reply-container { display: none; }
afuna@1731
   837
afuna@1731
   838
input, textarea {
afuna@1731
   839
    background-color: $*color_entry_background;
afuna@1731
   840
    color: $*color_entry_title;
afuna@1731
   841
    padding: 2px;
afuna@1731
   842
    border: 1px solid $bottom_border;
afuna@1731
   843
    $input_textarea_font
afuna@1731
   844
    font-size: 80%;
afuna@1731
   845
    }
afuna@1731
   846
afuna@1731
   847
textarea.textbox  { width: 90%!important; }
afuna@1731
   848
afuna@1731
   849
.poster-ip {
afuna@1731
   850
    $date_time_font
afuna@1731
   851
    text-transform: uppercase;
afuna@1731
   852
    color: $*color_entry_title;
afuna@1731
   853
    display: block;
afuna@1731
   854
    text-align: left;
afuna@1731
   855
    }
afuna@1731
   856
fu@4150
   857
.comment .userpic {
afuna@1731
   858
    display: block;
fu@2704
   859
    margin: 0;
afuna@1731
   860
    }
afuna@1731
   861
fu@4150
   862
.comment .userpic img {
afuna@1731
   863
    border: 5px solid $*color_navigation_module_background;
afuna@1731
   864
    }
afuna@1731
   865
afuna@1731
   866
.comment {
afuna@1731
   867
    background: $*color_entry_background;
fu@3622
   868
    color: $*color_entry_text;
afuna@1731
   869
    padding: 20px;
afuna@1731
   870
    margin: 0;
afuna@1731
   871
    }
fu@3622
   872
afuna@1731
   873
.comment-wrapper { margin: 20px 0; padding: 0; }
afuna@1731
   874
.comment-content { margin: 10px 0; }
afuna@1731
   875
mark@2190
   876
.bottomcomment, .comments-message {
afuna@1731
   877
    background: $*color_entry_background;
fu@3622
   878
    color: $*color_entry_text;
afuna@1731
   879
    padding: 20px;
afuna@1731
   880
    margin: 0;
afuna@1731
   881
    }
afuna@1731
   882
fu@3622
   883
.comment a,
fu@3622
   884
.bottomcomment a {
fu@3622
   885
    color: $*color_entry_link;
fu@3622
   886
    }
fu@3622
   887
fu@3622
   888
.comment a:visited,
fu@3622
   889
.bottomcomment a:visited {
fu@3622
   890
    color: $*color_entry_link_visited;
fu@3622
   891
    }
fu@3622
   892
fu@3622
   893
.comment a:hover,
fu@3622
   894
.bottomcomment a:hover {
fu@3622
   895
    color: $*color_entry_link_hover;
fu@3622
   896
    }
fu@3622
   897
afuna@1731
   898
.comment-management-links ul, .comment-interaction-links ul { margin: 0; padding: 0; list-style: none; }
afuna@1731
   899
.comment-management-links li, .comment-interaction-links li { display: inline; }
afuna@1731
   900
afuna@1731
   901
#qrform table { border: 0!important; }
afuna@1731
   902
afuna@1731
   903
.comment-poster {
afuna@1731
   904
    $date_time_font
afuna@1731
   905
    text-transform: uppercase;
afuna@1731
   906
    color: $*color_entry_title;
afuna@1731
   907
    }
afuna@1731
   908
afuna@1731
   909
.comment-management-links ul, .comment-interaction-links ul { margin: 0; padding: 0; list-style: none; }
afuna@1731
   910
.comment-management-links li, .comment-interaction-links li { display: inline; }
afuna@1731
   911
afuna@1731
   912
table.talkform {
afuna@1731
   913
    background: $*color_entry_background;
fu@3622
   914
    color: $*color_entry_text;
afuna@1731
   915
    $entry_font
afuna@1731
   916
    padding: 10px;
afuna@1731
   917
    margin: 0 0 10px 0;
afuna@1731
   918
    }
afuna@1731
   919
fu@3622
   920
table.talkform b {
fu@3622
   921
    color: $*color_entry_text;
fu@3622
   922
    }
fu@3622
   923
fu@3622
   924
table.talkform a {
fu@3622
   925
    color: $*color_entry_link;
fu@3622
   926
    }
fu@3622
   927
fu@3622
   928
table.talkform a:visited {
fu@3622
   929
    color: $*color_entry_link_visited;
fu@3622
   930
    }
fu@3622
   931
fu@3622
   932
table.talkform a:hover {
fu@3622
   933
    color: $*color_entry_link_hover;
fu@3622
   934
    }
fu@3622
   935
afuna@1731
   936
/*-- modules --*/
afuna@1731
   937
afuna@1731
   938
#secondary .module {
afuna@1731
   939
    $other_module_font
afuna@1731
   940
    }
afuna@1731
   941
afuna@1731
   942
#tertiary .module {
afuna@1731
   943
    float: left;
afuna@1731
   944
    padding: 0.5em 2em;
afuna@1731
   945
    $other_module_font
afuna@1731
   946
    }
afuna@1731
   947
#secondary .module-navlinks { $navigation_module_font; }
afuna@1731
   948
afuna@1731
   949
#tertiary .module-navlinks {
afuna@1731
   950
    margin: 0;
afuna@1731
   951
    padding: 1em 5%;
afuna@1731
   952
    width: 90%;
afuna@1731
   953
    }
afuna@1731
   954
afuna@1731
   955
.module-navlinks {
afuna@1731
   956
    padding: 10px;
fu@2698
   957
    margin: 0;
fu@2698
   958
    margin-$sidebar_position_opposite: -.8em;
afuna@1731
   959
    background-color: $*color_navigation_module_background;
afuna@1731
   960
    text-transform: lowercase;
afuna@1731
   961
    }
afuna@1731
   962
afuna@1731
   963
.module-navlinks ul.module-list {
afuna@1731
   964
    padding: 0;
afuna@1731
   965
    margin: 0;
afuna@1731
   966
    list-style: none;
afuna@1731
   967
    }
afuna@1731
   968
.module-navlinks ul.module-list li {
afuna@1731
   969
    padding: 0;
afuna@1731
   970
    margin: 0;
afuna@1731
   971
    list-style: none;
afuna@1731
   972
    }
afuna@1731
   973
.module-navlinks ul.module-list li a, .module-navlinks ul.module-list li a:link { color: $*color_navigation_module_link; }
afuna@1731
   974
.module-navlinks ul.module-list li a:visited { color: $*color_navigation_module_link_visited; }
afuna@1731
   975
.module-navlinks ul.module-list li a:hover { color: $*color_navigation_module_link_hover; }
afuna@1731
   976
afuna@1731
   977
afuna@1731
   978
.module-calendar { text-align: center; }
afuna@1731
   979
.module-customtext {
afuna@1731
   980
    padding: 0;
afuna@1731
   981
    margin: 20px 0 0 0;
afuna@1731
   982
    text-align: center;
afuna@1731
   983
    }
afuna@1731
   984
afuna@1731
   985
.module-header {
afuna@1731
   986
    $module_title_font
afuna@1731
   987
    font-weight: normal;
afuna@1731
   988
    letter-spacing: 1px;
afuna@1731
   989
    text-align: left;
afuna@1731
   990
    text-transform: lowercase;
afuna@1731
   991
    border-style: dotted;
afuna@1731
   992
    border-width: 0 0 1px 0;
afuna@1731
   993
    border-color: $bottom_border;
afuna@1731
   994
    }
afuna@1731
   995
afuna@1731
   996
.module-customtext .module-header { text-align: center; }
afuna@1731
   997
afuna@1731
   998
#tertiary .module-header a,
afuna@1731
   999
#tertiary .module-header a:link,
afuna@1731
  1000
#tertiary .module-header a:visited,
afuna@1731
  1001
#tertiary .module-header a:hover
afuna@1731
  1002
    { color: $*color_entry_title;  }
afuna@1731
  1003
afuna@1731
  1004
.module-userprofile .journal-name,
afuna@1731
  1005
.module-userprofile .userpic
afuna@1731
  1006
    { text-align: center; }
afuna@1731
  1007
afuna@1731
  1008
.module-userprofile .userpic img { border:5px solid $*color_navigation_module_background; }
afuna@1731
  1009
fu@2766
  1010
ul.userlite-interaction-links.icon-links {
afuna@1731
  1011
    list-style-image: none;
afuna@1731
  1012
    list-style-position: outside;
afuna@1731
  1013
    list-style-type: none;
afuna@1731
  1014
    margin-left: 0;
afuna@1731
  1015
    padding-left: 0;
afuna@1731
  1016
    text-align: center;
afuna@1731
  1017
    }
afuna@1731
  1018
fu@2766
  1019
ul.userlite-interaction-links.icon-links li {
afuna@1731
  1020
    display: inline;
afuna@1731
  1021
    padding: 0 0.2em;
afuna@1731
  1022
    }
afuna@1731
  1023
afuna@1731
  1024
.module-tags_cloud, .module-time, .module-powered { width: 90%; }
afuna@1731
  1025
fu@2605
  1026
.tags_cloud li, .module-tags_cloud li { display: inline;
fu@2605
  1027
    list-style-type: none; }
fu@2605
  1028
fu@3360
  1029
.manage-link {
fu@3360
  1030
    font-size: smaller;
afuna@1731
  1031
    text-align: right;
afuna@1731
  1032
    text-transform: uppercase;
afuna@1731
  1033
    }
afuna@1731
  1034
afuna@1731
  1035
.module-time, .module-powered {
afuna@1731
  1036
    border-style:dotted;
afuna@1731
  1037
    border-width: 0 0 1px 0;
afuna@1731
  1038
    border-color: $bottom_border;
afuna@1731
  1039
    letter-spacing: 1px;
afuna@1731
  1040
    line-height: 125%;
afuna@1731
  1041
    text-align: center;
afuna@1731
  1042
    padding-top: 1em;
afuna@1731
  1043
    }
afuna@1731
  1044
fu@2382
  1045
.module-search .search-form { margin: .2em auto; }
fu@2382
  1046
.module-search .search-box { margin: .2em; }
fu@2382
  1047
afuna@1731
  1048
#tertiary .module-content ul {
afuna@1731
  1049
    list-style-image: none;
afuna@1731
  1050
    list-style-position: outside;
afuna@1731
  1051
    list-style-type: disc;
afuna@1731
  1052
    margin-left: 1em;
afuna@1731
  1053
    padding-left: 0;
afuna@1731
  1054
    }
afuna@1731
  1055
afuna@1731
  1056
#tertiary .module-content li {
afuna@1731
  1057
    margin: 0.5em 0;
afuna@1731
  1058
    line-height: 100%;
afuna@1731
  1059
    }
afuna@1731
  1060
afuna@1731
  1061
afuna@1731
  1062
/*-- extras --*/
afuna@1731
  1063
afuna@1731
  1064
div.ContextualPopup {
afuna@1731
  1065
    position: relative;
afuna@1731
  1066
    margin: 0;
afuna@1731
  1067
    text-align: justify;
afuna@1731
  1068
    font-weight: normal;
afuna@1731
  1069
    $input_textarea_font
afuna@1731
  1070
    font-size: 50%;
afuna@1731
  1071
    color: $*color_entry_title;
afuna@1731
  1072
    line-height: 1.8em;
afuna@1731
  1073
    }
afuna@1731
  1074
afuna@1731
  1075
div.ContextualPopup div.Inner {
afuna@1731
  1076
    color: $*color_entry_title !important;
afuna@1731
  1077
    border: 1px dotted $bottom_border;
afuna@1731
  1078
    background: $*color_entry_background !important;
afuna@1731
  1079
    padding: 10px;
afuna@1731
  1080
    }
afuna@1731
  1081
fu@4231
  1082
div.ContextualPopup div.Inner a {
fu@4231
  1083
    color: $*color_entry_link;
fu@4231
  1084
    }
fu@4231
  1085
fu@4231
  1086
div.ContextualPopup div.Inner a:visited {
fu@4231
  1087
    color: $*color_entry_link_visited;
fu@4231
  1088
    }
fu@4231
  1089
fu@4231
  1090
div.ContextualPopup div.Inner a:hover {
fu@4231
  1091
    color: $*color_entry_link_hover;
fu@4231
  1092
    }
fu@4231
  1093
fu@4231
  1094
div.ContextualPopup div.Inner a:active {
fu@4231
  1095
    color: $*color_entry_link_active;
fu@4231
  1096
    }
fu@4231
  1097
afuna@1731
  1098
div.ContextualPopup .Userpic {
afuna@1731
  1099
    margin: 5px;
afuna@1731
  1100
    border: 1px dotted $bottom_border;
afuna@1731
  1101
    background: $*color_entry_background !important;
afuna@1731
  1102
    padding: 5px;
afuna@1731
  1103
    }
afuna@1731
  1104
afuna@1731
  1105
blockquote {
afuna@1731
  1106
    background: $blockquote_background;
afuna@1731
  1107
    border: 1px solid $solid_border;
afuna@1731
  1108
    font-size: 70%;
afuna@1731
  1109
    font-style: italic;
afuna@1731
  1110
    padding: 40px 20px;
afuna@1731
  1111
    margin: 20px;
afuna@1731
  1112
    color: $blockquote_text;
afuna@1731
  1113
    }
afuna@1731
  1114
afuna@1731
  1115
hr {
afuna@1731
  1116
    color: transparent;
afuna@1731
  1117
    height: 1px;
afuna@1731
  1118
    border-style: none;
afuna@1731
  1119
    border-bottom: 3px double $solid_border;
afuna@1731
  1120
    }
fu@2494
  1121
kareila@2632
  1122
$entryicon_css
fu@2494
  1123
fu@2544
  1124
""";
afuna@1731
  1125
afuna@1731
  1126
}