Input method integration with ULS
The file ext.uls.settingspanel.js is a draft for common code in the different settings panels. Change-Id: I057274f16b27b2c18d43d41c1d43f485a18ef0bf
This commit is contained in:
@@ -4,21 +4,6 @@ div#settings-block {
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
div.display-settings-block {
|
||||
/* @embed */
|
||||
background: transparent url('../images/display.png') no-repeat;
|
||||
background-size: 20px auto;
|
||||
/* This is only few pixels off from the below */
|
||||
background-position: 4.5% 0;
|
||||
/* Does not work for RTL
|
||||
background-position-x: 15px;
|
||||
background-position-y: 5px;
|
||||
*/
|
||||
color: #252525;
|
||||
padding-left: 32px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.display-settings-block:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
@@ -1,3 +1,19 @@
|
||||
|
||||
div.display-settings-block {
|
||||
/* @embed */
|
||||
background: transparent url('../images/display.png') no-repeat;
|
||||
background-size: 20px auto;
|
||||
/* This is only few pixels off from the below */
|
||||
background-position: 4.5% 0;
|
||||
/* Does not work for RTL
|
||||
background-position-x: 15px;
|
||||
background-position-y: 5px;
|
||||
*/
|
||||
color: #252525;
|
||||
padding-left: 32px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.uls-font-label, .uls-font-select {
|
||||
font-size: 10pt;
|
||||
line-height: 16pt;
|
||||
|
||||
29
resources/css/ext.uls.inputsettings.css
Normal file
29
resources/css/ext.uls.inputsettings.css
Normal file
@@ -0,0 +1,29 @@
|
||||
div.input-settings-block {
|
||||
/* @embed */
|
||||
background: transparent url('../images/input.png') no-repeat;
|
||||
background-size: 20px auto;
|
||||
/* This is only few pixels off from the below */
|
||||
background-position: 4.5% 0;
|
||||
/* Does not work for RTL
|
||||
background-position-x: 15px;
|
||||
background-position-y: 5px;
|
||||
*/
|
||||
color: #252525;
|
||||
padding-left: 32px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.imelabel {
|
||||
display: block;
|
||||
padding-bottom: 10px;
|
||||
font-size: 10pt;
|
||||
line-height: 16pt;
|
||||
}
|
||||
|
||||
.imelabel span {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.imelabel input {
|
||||
float: left;
|
||||
}
|
||||
@@ -92,20 +92,22 @@
|
||||
border-left-color: #3366BB;
|
||||
}
|
||||
|
||||
#languagesettings-panels div#settings-block {
|
||||
#settings-block {
|
||||
border-left: 1px solid #C9C9C9;
|
||||
padding-left: 10px;
|
||||
background-color: #F6F6F6;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
#languagesettings-panels div#display-settings-block {
|
||||
#input-settings-block,
|
||||
#display-settings-block {
|
||||
background-position: 6% 6px;
|
||||
padding-left: 40px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#languagesettings-panels div#display-settings-block:hover {
|
||||
#input-settings-block:hover,
|
||||
#display-settings-block:hover {
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user