Skip to content

Commit 9f8c327

Browse files
committed
Fix the position of the input field hints (see contao#7561)
1 parent 783d0ea commit 9f8c327

File tree

4 files changed

+20
-65
lines changed

4 files changed

+20
-65
lines changed

system/docs/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Contao Open Source CMS changelog
44
Version 3.4.1 (2015-01-XX)
55
--------------------------
66

7+
### Fixed
8+
Fix the position of the input field hints (see #7561).
9+
710
### Fixed
811
Do not apply the GDlib maximum dimensions to SVG images (see #7435).
912

-95 Bytes
Loading

system/themes/flexible/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

system/themes/flexible/src/main.css

+16-64
Original file line numberDiff line numberDiff line change
@@ -1364,52 +1364,52 @@ a.navigation {
13641364
background:url("images/hints.gif") no-repeat -20px 20px;
13651365
}
13661366
#ctrl_playerSize_0 {
1367-
background-position:142px 1px !important;
1367+
background-position:right 1px !important;
13681368
}
13691369
#ctrl_playerSize_1 {
1370-
background-position:143px -18px !important;
1370+
background-position:right -18px !important;
13711371
}
13721372
.tl_imageSize_0 {
1373-
background-position:63px 1px !important;
1373+
background-position:right 1px !important;
13741374
}
13751375
.tl_imageSize_1 {
1376-
background-position:64px -18px !important;
1376+
background-position:right -18px !important;
13771377
}
13781378
.trbl_top {
1379-
background-position:47px -39px !important;
1379+
background-position:right -39px !important;
13801380
}
13811381
.trbl_right {
1382-
background-position:47px -59px !important;
1382+
background-position:right -59px !important;
13831383
}
13841384
.trbl_bottom {
1385-
background-position:47px -79px !important;
1385+
background-position:right -79px !important;
13861386
}
13871387
.trbl_left {
1388-
background-position:47px -99px !important;
1388+
background-position:right -99px !important;
13891389
}
13901390
#ctrl_shadowsize_top {
1391-
background-position:46px -119px !important;
1391+
background-position:right -119px !important;
13921392
}
13931393
#ctrl_shadowsize_right {
1394-
background-position:46px -139px !important;
1394+
background-position:right -139px !important;
13951395
}
13961396
#ctrl_shadowsize_bottom {
1397-
background-position:46px -159px !important;
1397+
background-position:right -159px !important;
13981398
}
13991399
#ctrl_shadowsize_left {
1400-
background-position:46px -179px !important;
1400+
background-position:right -179px !important;
14011401
}
14021402
#ctrl_borderradius_top {
1403-
background-position:0 -199px !important;
1403+
background-position:left -199px !important;
14041404
}
14051405
#ctrl_borderradius_right {
1406-
background-position:47px -219px !important;
1406+
background-position:right -219px !important;
14071407
}
14081408
#ctrl_borderradius_bottom {
1409-
background-position:47px -241px !important;
1409+
background-position:right -241px !important;
14101410
}
14111411
#ctrl_borderradius_left {
1412-
background-position:0 -261px !important;
1412+
background-position:left -261px !important;
14131413
}
14141414

14151415
/* Error messages */
@@ -1690,54 +1690,6 @@ fieldset.collapsed > legend {
16901690
.mac .tl_panel select {
16911691
max-width:184px;
16921692
}
1693-
#ctrl_playerSize_0 {
1694-
background-position:164px 1px !important;
1695-
}
1696-
#ctrl_playerSize_1 {
1697-
background-position:165px -18px !important;
1698-
}
1699-
.tl_imageSize_0 {
1700-
background-position:85px 1px !important;
1701-
}
1702-
.tl_imageSize_1 {
1703-
background-position:86px -18px !important;
1704-
}
1705-
.trbl_top {
1706-
background-position:70px -39px !important;
1707-
}
1708-
.trbl_right {
1709-
background-position:70px -59px !important;
1710-
}
1711-
.trbl_bottom {
1712-
background-position:70px -79px !important;
1713-
}
1714-
.trbl_left {
1715-
background-position:70px -99px !important;
1716-
}
1717-
#ctrl_shadowsize_top {
1718-
background-position:69px -119px !important;
1719-
}
1720-
#ctrl_shadowsize_right {
1721-
background-position:69px -139px !important;
1722-
}
1723-
#ctrl_shadowsize_bottom {
1724-
background-position:69px -159px !important;
1725-
}
1726-
#ctrl_shadowsize_left {
1727-
background-position:69px -179px !important;
1728-
}
1729-
#ctrl_borderradius_top {
1730-
background-position:0 -199px !important;
1731-
}
1732-
#ctrl_borderradius_right {
1733-
background-position:70px -219px !important;
1734-
}
1735-
#ctrl_borderradius_bottom {
1736-
background-position:70px -241px !important;
1737-
}
1738-
#ctrl_borderradius_left {
1739-
background-position:0 -261px !important;
1740-
}
17411693
}
17421694

17431695
/* Tablet */

0 commit comments

Comments
 (0)