diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /_scss/imports/scss/_Components.scss | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to '_scss/imports/scss/_Components.scss')
-rw-r--r-- | _scss/imports/scss/_Components.scss | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/_scss/imports/scss/_Components.scss b/_scss/imports/scss/_Components.scss new file mode 100644 index 00000000..2fda5afc --- /dev/null +++ b/_scss/imports/scss/_Components.scss | |||
@@ -0,0 +1,33 @@ | |||
1 | // <copyright> | ||
2 | // This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | // No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | // (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | // </copyright> | ||
6 | |||
7 | |||
8 | |||
9 | /* Begin: Styles for the Tree component */ | ||
10 | |||
11 | .tree | ||
12 | { | ||
13 | -webkit-user-select:none; | ||
14 | cursor:default; | ||
15 | float: left; | ||
16 | padding-left: 0; | ||
17 | color: $color-panel-text; | ||
18 | } | ||
19 | |||
20 | .tree li | ||
21 | { | ||
22 | -webkit-margin-before: 0px; | ||
23 | -webkit-margin-after: 0px; | ||
24 | list-style-type:none; | ||
25 | } | ||
26 | |||
27 | .tree li > text > img | ||
28 | { | ||
29 | margin-right:8px; | ||
30 | -webkit-transition: -webkit-transform 0.05s linear; | ||
31 | } | ||
32 | |||
33 | /* End: styles for the Tree component */ \ No newline at end of file | ||