-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nicholas Stenbeck <[email protected]>
- Loading branch information
Nicholas Stenbeck
committed
Feb 14, 2020
1 parent
d5f3262
commit 38b9446
Showing
17 changed files
with
1,841 additions
and
165 deletions.
There are no files selected for viewing
244 changes: 122 additions & 122 deletions
244
packages/core/src/browser/common-frontend-contribution.ts
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2020 Ericsson and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
.theia-settings-container .settings-context-menu-container { | ||
position: relative; | ||
padding-left: 5px; | ||
} | ||
|
||
.theia-settings-container .settings-context-menu-btn { | ||
cursor: pointer; | ||
} | ||
|
||
.theia-settings-container .settings-context-menu { | ||
position: absolute; | ||
width: 140px; | ||
list-style: none; | ||
padding: 5px; | ||
bottom: calc(100% + 10px); | ||
left: -10px; | ||
z-index: 9999; | ||
background-color: var(--theia-menu-background); | ||
} | ||
|
||
.theia-settings-container .settings-context-menu:before { | ||
content: ""; | ||
position: absolute; | ||
left: 10px; | ||
bottom: -10px; | ||
width: 0; | ||
height: 0; | ||
border-left: 10px solid transparent; | ||
border-right: 10px solid transparent; | ||
border-top: 10px solid var(--theia-menu-background); | ||
} | ||
|
||
.theia-settings-container .settings-context-menu li { | ||
padding: 5px; | ||
} | ||
|
||
.theia-settings-container .settings-context-menu li:hover { | ||
background-color: var(--theia-menu-selectionBackground); | ||
} | ||
|
||
.theia-settings-container .settings-context-menu i { | ||
padding-right: 5px; | ||
width: 16px; | ||
display: -webkit-inline-box; | ||
display: -ms-inline-flexbox; | ||
display: inline-flex; | ||
-webkit-box-pack: center; | ||
-ms-flex-pack: center; | ||
justify-content: center; | ||
} | ||
|
||
.theia-settings-container .pref-context-menu-btn { | ||
margin-left: 5px; | ||
} | ||
|
||
.theia-settings-container .pref-context-menu-btn:hover { | ||
background-color: rgba(50%, 50%, 50%, 0.1); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2020 Ericsson and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
.theia-settings-container .settings-navbar { | ||
position: sticky; | ||
float: left; | ||
list-style: none; | ||
top: 1em; | ||
padding: 0; | ||
margin: 0; | ||
width: 150px; | ||
} | ||
|
||
.theia-settings-container .settings-navbar li { | ||
padding: 3px 8px; | ||
font-weight: bold; | ||
} | ||
|
||
.theia-settings-container .settings-navbar li:hover { | ||
background-color: var(--theia-menu-selectionBackground); | ||
cursor: pointer; | ||
} |
Oops, something went wrong.