Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/sessions/contrib/changes/browser/media/changesViewActions.css
13406 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
.changes-action-view-item {
7
display: flex;
8
align-items: center;
9
gap: 3px;
10
cursor: pointer;
11
padding: 0 4px;
12
border-radius: 3px;
13
}
14
15
.changes-action-view-item:hover {
16
background-color: var(--vscode-toolbar-hoverBackground);
17
}
18
19
.changes-action-view-item .changes-action-icon {
20
display: flex;
21
align-items: center;
22
flex-shrink: 0;
23
font-size: 14px;
24
}
25
26
.changes-action-view-item .changes-action-added {
27
color: var(--vscode-gitDecoration-addedResourceForeground);
28
}
29
30
.changes-action-view-item .changes-action-removed {
31
color: var(--vscode-gitDecoration-deletedResourceForeground);
32
}
33
34