Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
13e4d1d5
Commit
13e4d1d5
authored
Apr 15, 2012
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #2990: text wrapping in .uneditable-input
parent
cad8f2b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
docs/assets/css/bootstrap.css
docs/assets/css/bootstrap.css
+2
-0
less/forms.less
less/forms.less
+3
-0
No files found.
docs/assets/css/bootstrap.css
View file @
13e4d1d5
...
@@ -977,6 +977,8 @@ select:focus:required:invalid:focus {
...
@@ -977,6 +977,8 @@ select:focus:required:invalid:focus {
-moz-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.025
);
-moz-box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.025
);
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.025
);
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.025
);
cursor
:
not-allowed
;
cursor
:
not-allowed
;
overflow
:
hidden
;
white-space
:
nowrap
;
}
}
:-moz-placeholder
{
:-moz-placeholder
{
color
:
#999999
;
color
:
#999999
;
...
...
less/forms.less
View file @
13e4d1d5
...
@@ -331,6 +331,9 @@ select:focus:required:invalid {
...
@@ -331,6 +331,9 @@ select:focus:required:invalid {
border-color: #eee;
border-color: #eee;
.box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
.box-shadow(inset 0 1px 2px rgba(0,0,0,.025));
cursor: not-allowed;
cursor: not-allowed;
// prevent text from wrapping, but still cut it off like an input does
overflow: hidden;
white-space: nowrap;
}
}
// Placeholder text gets special styles; can't be bundled together though for some reason
// Placeholder text gets special styles; can't be bundled together though for some reason
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment