Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 427503 - Orion New UI Improvements
- Menu bar buttons should have a border on hover
- Navigator links are colored orange on hover
- Hamburger and User links are colored orange on hover
- Bottom of editor div raised and border shown to remove appearance of being cut-off

--Signed-off-by: Elijah El-Haddad <elijahe@ca.ibm.com>
  • Loading branch information
elijahe committed Feb 5, 2014
1 parent 410df2b commit 15672ae
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
11 changes: 10 additions & 1 deletion bundles/org.eclipse.orion.client.ui/web/css/ide.css
Expand Up @@ -56,6 +56,14 @@ button::-moz-focus-inner {
color: #333333;
}

.navlink:hover {
color: #F58B0F;
}

.navlink > span {
color: inherit;
}

.nav_fakelink:hover {
cursor: pointer;
}
Expand All @@ -73,6 +81,7 @@ button::-moz-focus-inner {
.navlinkonpage:hover {
text-decoration: none;
border-bottom: 1px dotted;
color: #F58B0F;
}

.dragOver {
Expand Down Expand Up @@ -858,7 +867,7 @@ input {
}

.centralNavigation:hover{

color: #F58B0F;
}

.navigationLabel{
Expand Down
4 changes: 4 additions & 0 deletions bundles/org.eclipse.orion.client.ui/web/css/images.css
Expand Up @@ -126,6 +126,10 @@
-moz-osx-font-smoothing: grayscale;
}

.core-sprite-silhouette:hover {
color: #F58B0F;
}

.core-sprite-addcontent{
font-size: 16px;
color: #f89427;
Expand Down
4 changes: 2 additions & 2 deletions bundles/org.eclipse.orion.client.ui/web/css/layout.css
Expand Up @@ -283,7 +283,7 @@ hard-coded numbers elsewhere.
position: absolute;
top: 2px; /* $ToolbarHeight + 2 */
width: 100%;
bottom: 0;
bottom: 10px;
overflow-y: auto;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33); /* 0 0 0 1px #d1d1d1,0 0 4px 1px #ccc; */
margin-left: 2px;
Expand All @@ -299,7 +299,7 @@ hard-coded numbers elsewhere.
position: absolute;
top: 36px; /* $ToolbarHeight + 2 */
width: 100%;
bottom: 0;
bottom: 10px;
overflow-y: auto;
}

Expand Down
10 changes: 9 additions & 1 deletion bundles/org.eclipse.orion.client.ui/web/css/theme.css
Expand Up @@ -233,6 +233,14 @@ a.currentLocation:hover {
margin: 0; /* to override user agent stylesheet */
}

.commandButton.orionButton.dropdownTrigger {
border-color: transparent;
}

.commandButton.orionButton.dropdownTrigger:hover {
border-color: #ccc;
}

.commandButton {
color: #222;
border: 1px solid #dedede;
Expand Down Expand Up @@ -386,7 +394,7 @@ a.currentLocation:hover {
.dropdownTrigger {
font-weight: normal;
background: none !important;
border-color: transparent !important;
border-color: transparent;
}

.dropdownTrigger a {
Expand Down

0 comments on commit 15672ae

Please sign in to comment.