~ubuntu-branches/debian/sid/wordpress/sid

« back to all changes in this revision

Viewing changes to wp-admin/css/colors/_variables.scss

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-01-24 22:20:08 UTC
  • mfrom: (1.2.31)
  • Revision ID: package-import@ubuntu.com-20140124222008-wgyk0hvmhjkubf9i
Tags: 3.8.1+dfsg-1
* New upstream release.
* Depend on either mysql or mariadb client Closes: #732914

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// assign default value to all undefined variables
 
2
 
 
3
 
 
4
// core variables
 
5
 
 
6
$text-color: #fff !default;
 
7
$base-color: #222 !default;
 
8
$icon-color: hsl( hue( $base-color ), 7%, 95% ) !default;
 
9
$highlight-color: #0074a2 !default;
 
10
$notification-color: #d54e21 !default;
 
11
 
 
12
 
 
13
// global
 
14
 
 
15
$body-background: #f1f1f1 !default;
 
16
 
 
17
$link: #0074a2 !default;
 
18
$link-focus: lighten( $link, 10% ) !default;
 
19
 
 
20
$button-color: $highlight-color !default;
 
21
$form-checked: $highlight-color !default;
 
22
 
 
23
 
 
24
// admin menu & admin-bar
 
25
 
 
26
$menu-text: $text-color !default;
 
27
$menu-icon: $icon-color !default;
 
28
$menu-background: $base-color !default;
 
29
 
 
30
$menu-highlight-text: $text-color !default;
 
31
$menu-highlight-icon: $text-color !default;
 
32
$menu-highlight-background: $highlight-color !default;
 
33
 
 
34
$menu-current-text: $menu-highlight-text !default;
 
35
$menu-current-icon: $menu-highlight-icon !default;
 
36
$menu-current-background: $menu-highlight-background !default;
 
37
 
 
38
$menu-submenu-text: mix( $base-color, $text-color, 30% ) !default;
 
39
$menu-submenu-background: darken( $base-color, 7% ) !default;
 
40
$menu-submenu-background-alt: desaturate( lighten( $menu-background, 7% ), 7% ) !default;
 
41
 
 
42
$menu-submenu-focus-text: $highlight-color !default;
 
43
$menu-submenu-current-text: $text-color !default;
 
44
 
 
45
$menu-bubble-text: $text-color !default;
 
46
$menu-bubble-background: $notification-color !default;
 
47
$menu-bubble-current-text: $text-color !default;
 
48
$menu-bubble-current-background: $menu-submenu-background !default;
 
49
 
 
50
$menu-collapse-text: $menu-icon !default;
 
51
$menu-collapse-icon: $menu-icon !default;
 
52
$menu-collapse-focus-text: $text-color !default;
 
53
$menu-collapse-focus-icon: $menu-highlight-icon !default;
 
54
 
 
55
$adminbar-avatar-frame: lighten( $menu-background, 7% ) !default;
 
56
$adminbar-input-background: lighten( $menu-background, 7% ) !default;
 
57
 
 
58
$menu-customizer-text: mix( $base-color, $text-color, 40% ) !default;