Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-10-02 11:26:24 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-10-02 11:26:24 +0400
commitb82cb2630c2b2b3fbbda542602eb9383a520778a (patch)
tree44fae20aff5330844bb4a4e012e7811d3e433d97 /app/assets
parent69751aac32f505a87a40af638dbf14f69f85315e (diff)
Use class instead id for css styles
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/gitlab_bootstrap/lists.scss5
-rw-r--r--app/assets/stylesheets/sections/tree.scss23
2 files changed, 8 insertions, 20 deletions
diff --git a/app/assets/stylesheets/gitlab_bootstrap/lists.scss b/app/assets/stylesheets/gitlab_bootstrap/lists.scss
index 5585c35c089..a5d6bd0af4c 100644
--- a/app/assets/stylesheets/gitlab_bootstrap/lists.scss
+++ b/app/assets/stylesheets/gitlab_bootstrap/lists.scss
@@ -13,7 +13,10 @@ ul {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
&.smoke { background-color:#f5f5f5; }
- &:hover { background:$hover; }
+ &:hover {
+ background:$hover;
+ border-bottom:1px solid #ADF;
+ }
&:last-child { border:none }
.author { color: #999; }
diff --git a/app/assets/stylesheets/sections/tree.scss b/app/assets/stylesheets/sections/tree.scss
index 5b2bb7993bb..cd31b6a3ee4 100644
--- a/app/assets/stylesheets/sections/tree.scss
+++ b/app/assets/stylesheets/sections/tree.scss
@@ -1,21 +1,8 @@
-#tree-holder {
- #tree-content-holder {
+.tree-holder {
+ .tree-content-holder {
float:left;
width:100%;
}
- #tree-readme-holder {
- float:left;
- width:100%;
- .readme {
- border:1px solid #ccc;
- padding:12px;
- background: #F7F7F7;
-
- pre {
- overflow: auto;
- }
- }
- }
.tree_progress {
display:none;
@@ -25,7 +12,7 @@
}
}
- #tree-slider {
+ .tree-table {
@include border-radius(0);
.tree-item {
&:hover {
@@ -55,8 +42,7 @@
}
}
-
- #tree-slider {
+ .tree-table {
td {
background:#fafafa;
}
@@ -72,5 +58,4 @@
text-decoration: underline;
}
}
-
}