From f2573a2f7f3100b232b4c6fa928d5a53323d6cd6 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Fri, 10 Jun 2016 10:14:00 +0200 Subject: [PATCH] css fix --- src/vs/workbench/browser/parts/editor/media/tabstitle.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/browser/parts/editor/media/tabstitle.css b/src/vs/workbench/browser/parts/editor/media/tabstitle.css index bf9d8334867..12e30f6b6bb 100644 --- a/src/vs/workbench/browser/parts/editor/media/tabstitle.css +++ b/src/vs/workbench/browser/parts/editor/media/tabstitle.css @@ -47,9 +47,10 @@ opacity: 0; /* hide the close button by default */ } -.monaco-workbench > .part.editor > .content > .one-editor-container .title.active > .tabs-container > .tab.active > .tab-close, /* always show it for active tab */ -.monaco-workbench > .part.editor > .content > .one-editor-container .title.active > .tabs-container > .tab:hover > .tab-close, /* always show it on hover */ -.monaco-workbench > .part.editor > .content > .one-editor-container .title > .tabs-container > .tab.dirty > .tab-close { /* always show it for dirty tabs */ +.monaco-workbench > .part.editor > .content > .one-editor-container .title.active > .tabs-container > .tab.active > .tab-close, /* always show it for active tab */ +.monaco-workbench > .part.editor > .content > .one-editor-container .title.active > .tabs-container > .tab:hover > .tab-close, /* always show it on hover */ +.monaco-workbench > .part.editor > .content > .one-editor-container .title.active > .tabs-container > .tab.active:hover > .tab-close, /* always show it on hover */ +.monaco-workbench > .part.editor > .content > .one-editor-container .title > .tabs-container > .tab.dirty > .tab-close { /* always show it for dirty tabs */ opacity: 1; } -- GitLab