Skip to content

Commit 3217ba7

Browse files
committed
Couple more fixes around input fields.
1 parent 5ee4d04 commit 3217ba7

File tree

8 files changed

+77
-48
lines changed

8 files changed

+77
-48
lines changed

demo/css/jquery.mobile.flatui.css

Lines changed: 24 additions & 14 deletions
Large diffs are not rendered by default.

demo/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ <h3>Section 3</h3>
6161
<fieldset data-role="controlgroup">
6262
<input type="radio" name="radio-choice-a" data-theme="c" id="radio-choice-1-a" value="choice-1" checked="checked" />
6363
<label for="radio-choice-1-a">Radio</label>
64-
6564
<input type="checkbox" name="checkbox-a" data-theme="c" id="checkbox-a" checked="checked" />
6665
<label for="checkbox-a">Checkbox</label>
6766
</fieldset>
@@ -90,7 +89,7 @@ <h3>Section 3</h3>
9089
<a href="#" data-role="button" data-icon="flat-camera" data-iconpos="notext" data-theme="b" data-inline="true">Camera</a>
9190
</div>
9291

93-
<select name="flip-1" id="flip-1" data-theme="b" data-role="slider">
92+
<select name="flip-1" id="flip-1" data-role="slider">
9493
<option value="off">Off</option>
9594
<option value="on" selected>On</option>
9695
</select>

generated/jquery.mobile.flatui.css

Lines changed: 24 additions & 14 deletions
Large diffs are not rendered by default.

generated/jquery.mobile.flatui.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/css/jquery.mobile.structure.custom.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,12 @@
44

55
.ui-btn-icon-notext:after {
66
text-indent: 0px;
7+
}
8+
9+
.ui-input-text {
10+
border: 2px solid #eee !important;
11+
}
12+
13+
.ui-slider-input {
14+
border: 2px solid #eee !important;
715
}

src/css/jquery.mobile.theme.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,12 @@ div.ui-controlgroup-label {
4646
-----------------------------------------------------------------------------------------------------------*/
4747
/* Field contain separator (< 28em) */
4848
.ui-field-contain {
49+
/*
4950
border-bottom-color: #828282;
5051
border-bottom-color: rgba(0,0,0,.15);
5152
border-bottom-width: 1px;
5253
border-bottom-style: solid;
54+
*/
5355
}
5456
/* Table opt-in classes: strokes between each row, and alternating row stripes */
5557
/* Classes table-stroke and table-stripe are deprecated in 1.4. */

src/css/swatches.css

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/stylus/functions/build_swatch.styl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ build_swatch(swatch)
2828
body .ui-group-theme-{swatch} .ui-body-inherit,
2929
.ui-panel-page-container-{swatch}
3030
background: font_color
31-
border-color: #ddd
31+
border-color: primary_color
3232
color: #333
3333

3434
.ui-body-{swatch}
@@ -90,7 +90,7 @@ build_swatch(swatch)
9090
body .ui-btn.ui-btn-{swatch}:active
9191
background: highlight_color
9292
border-color: highlight_color
93-
color: #333
93+
color: font_color
9494

9595
.ui-page-theme-{swatch} .ui-btn.ui-btn-active,
9696
.ui-bar-{swatch} .ui-btn.ui-btn-active,

0 commit comments

Comments
 (0)