Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Stop inline header filename from resizing #5818

Merged
merged 1 commit into from
Nov 1, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/styles/brackets.less
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,11 @@ a, img {
}

/* Styles for inline editors */

.inline-text-editor {
line-height: 0px;
}

.inline-widget {
position: relative;
overflow: hidden;
Expand All @@ -689,11 +694,13 @@ a, img {
}

.inline-editor-header {
display: inline-block;
padding: 10px 10px 0px 40px;

.filename {
vertical-align: middle;
font-family: @sansFontFamily;
font-size: 1.1em;
font-size: 13px;
color: @bc-black;

// Filename header is clickable (it's an <a> tag, so we get underscore on hover by
Expand Down