Path: blob/main/src/vs/workbench/browser/parts/notifications/media/notificationsCenter.css
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45.monaco-workbench > .notifications-center {6position: absolute;7z-index: 1000;8right: 7px; /* attempt to position at same location as a toast */9bottom: 29px; /* 22px status bar height + 7px (attempt to position at same location as a toast) */10display: none;11overflow: hidden;12border-radius: 4px;13}1415.monaco-workbench.nostatusbar > .notifications-center {16bottom: 11px; /* attempt to position at same location as a toast */17}1819.monaco-workbench > .notifications-center.visible {20display: block;21}2223/* Header */2425.monaco-workbench > .notifications-center > .notifications-center-header {26display: flex;27align-items: center;28padding-left: 8px;29padding-right: 5px;30height: 35px;31}3233.monaco-workbench > .notifications-center > .notifications-center-header > .notifications-center-header-title {34text-transform: uppercase;35font-size: 11px;36}3738.monaco-workbench > .notifications-center > .notifications-center-header > .notifications-center-header-toolbar {39flex: 1;40}4142.monaco-workbench > .notifications-center > .notifications-center-header > .notifications-center-header-toolbar .actions-container {43justify-content: flex-end;44}4546.monaco-workbench > .notifications-center .notifications-list-container .monaco-list-row:not(:last-child) > .notification-list-item {47border-bottom: 1px solid var(--vscode-notifications-border);48}4950.monaco-workbench > .notifications-center .notifications-list-container .monaco-list-row:last-child {51border-radius: 0px 0px 4px 4px; /* adopt the border radius at the end of the notifications center */52}5354/* Icons */5556.monaco-workbench > .notifications-center .codicon.codicon-error {57color: var(--vscode-notificationsErrorIcon-foreground) !important;58}5960.monaco-workbench > .notifications-center .codicon.codicon-warning {61color: var(--vscode-notificationsWarningIcon-foreground) !important;62}6364.monaco-workbench > .notifications-center .codicon.codicon-info {65color: var(--vscode-notificationsInfoIcon-foreground) !important;66}676869