Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use inline-block instead of inline #153

Merged
merged 3 commits into from
Feb 20, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion css/WEBootstrap/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ select.selecterror {
filter:progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=135, Color='#C3C3C3');
}
#QuickMenuDiv li {
display:inline-block; /* items are inline */
display:inline-block;
height:38px;
}

Expand Down
4 changes: 2 additions & 2 deletions css/aguapop/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,9 @@ li {
list-style:none;
float:right;
}
#QuickMenuDiv ul li {
#QuickMenuDiv li {
display:inline-block;
float:left;
display:inline;
margin:0px 3px;
}

Expand Down
24 changes: 12 additions & 12 deletions css/default/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ button img {
}

a {
color:blue;
color:#0000ff;
text-decoration:none;
}
a:hover {
color:blue;
color:#0000ff;
background-color:transparent;
text-decoration:underline;
/* Tag selector for mouse over link. */
Expand Down Expand Up @@ -59,7 +59,7 @@ table.selection {

th {
background-color:#b06161;
color:white;
color:#ffffff;
font-weight:normal;
}

Expand Down Expand Up @@ -230,7 +230,7 @@ tr.striped_row:nth-of-type(odd) {
.tableheader {
font-weight:normal;
background-color:#800000;
color:white;
color:#ffffff;
}

.notavailable {
Expand Down Expand Up @@ -271,7 +271,7 @@ textarea.texterror {

.OsRow {
background-color:#234567;
color:white;
color:#ffffff;
}

/*** CANVAS ***/
Expand All @@ -283,13 +283,13 @@ textarea.texterror {
/*** HEADER ***/

#HeaderDiv {
color:white;
color:#ffffff;
/*background:#588BB6;*/
/*overflow:hidden;*/
}

#HeaderDiv a {
color:white;
color:#ffffff;
}

#HeaderDiv a:hover {
Expand Down Expand Up @@ -327,8 +327,8 @@ textarea.texterror {
}

#QuickMenuDiv li {
display:inline;
border-left:thin ridge #588BB6;
display:inline-block;
padding:14px 12px;
}

Expand Down Expand Up @@ -384,7 +384,7 @@ textarea.texterror {
}

.main_menu_selected {
background-color:white;
background-color:#ffffff;
padding:2px;
}

Expand All @@ -411,11 +411,11 @@ textarea.texterror {
}

#SubMenuDiv a {
color:blue;
color:#0000ff;
}

#SubMenuDiv a:hover {
color:blue;
color:#0000ff;
text-decoration:underline;
}

Expand All @@ -433,7 +433,7 @@ textarea.texterror {
}

.menu_group_item {
background-color:white;
background-color:#ffffff;
padding:2px;
}

Expand Down
15 changes: 12 additions & 3 deletions css/fluid/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,12 @@ list-style-image:url(bullet.gif);

#QuickMenuDiv {float:right;}
#QuickMenuDiv ul {list-style:none;margin:0;padding:0;}
#QuickMenuDiv li {display:inline;float:left;margin:2px 0;padding:0;}
#QuickMenuDiv li {
display:inline-block;
float:left;
margin:2px 0;
padding:0;
}
#QuickMenuDiv li a {
background:#aae;
border:1px outset #aae;
Expand Down Expand Up @@ -311,7 +316,11 @@ list-style-image:url(bullet.gif);
height:18px;
}
#MainMenuDiv ul {list-style:none;padding:0;margin:0;}
#MainMenuDiv li {display:inline;float:left;margin:2px 0;padding:0;}
#MainMenuDiv li {
display:inline;
float:left;
margin:2px 0;
padding:0;}
#MainMenuDiv li a {
background:#aae;
border:1px outset #aae;
Expand Down Expand Up @@ -470,4 +479,4 @@ list-style-image:url(bullet.gif);

@media only screen and (min-device-width:1200px) {
/* Style for new browser in a device with a rendering width greater than 1200px (lg - Large devices - Larger desktops). */
}
}
2 changes: 1 addition & 1 deletion css/fresh/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ select.selecterror {
list-style:none; /* hide the bullets */
}
#QuickMenuDiv li {
display:inline; /* items are inline */
display:inline-block;
}

/*** links as buttons!!! clicking anywhere in the button will activate
Expand Down
2 changes: 1 addition & 1 deletion css/gel/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ li { /* ??? */
list-style:none; /* hide the bullets */
}
#QuickMenuDiv li {
display:inline; /* items are inline */
display:inline-block;
}

/*** links as buttons!!! clicking anywhere in the button will activate
Expand Down
2 changes: 1 addition & 1 deletion css/professional-rtl/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ li {
list-style:none; /* hide the bullets */
}
#QuickMenuDiv li {
display:inline; /* items are inline */
display:inline-block;
float:right; /* right to left */
}

Expand Down
2 changes: 1 addition & 1 deletion css/professional/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ textarea.texterror {
list-style:none; /* hide the bullets */
}
#QuickMenuDiv li {
display:inline; /* items are inline */
display:inline-block;
}

/*** links as buttons!!! clicking anywhere in the button will activate
Expand Down
2 changes: 1 addition & 1 deletion css/silverwolf/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ select.selecterror { /*AccountGroups.php, BankAccounts.php, BOMs.php, Stocks.php
list-style:none; /* hide the bullets */
}
#QuickMenuDiv li {
display:inline; /* items are inline */
display:inline-block;
}

/*** links as buttons!!! clicking anywhere in the button will activate
Expand Down
2 changes: 1 addition & 1 deletion css/wood/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ select.selecterror {
list-style:none; /* hide the bullets */
}
#QuickMenuDiv li {
display:inline; /* items are inline */
display:inline-block;
}

/* BODY */
Expand Down
15 changes: 7 additions & 8 deletions css/xenos/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ NOTE:
This CSS is not yet fully optimized. Some styles maybe redundant and not supported by some browser.
***/


button img {
/* Describes how button image should be displayed. */
height:21px;
width:21px;
}

body {
font-family:Arial, Verdana, Helvetica, sans-serif;
font-size:10pt;
Expand All @@ -26,6 +19,12 @@ body {
background:#F1F1F1;
}

button img {
height:21px;
width:21px;
/* Describes how button image should be displayed. Related with body font-size in px. */
}

/*** Default Styles ***/
a {
color:#0088CD;
Expand Down Expand Up @@ -405,7 +404,7 @@ select.selecterror {
filter:progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=135, Color='#C3C3C3');
}
#QuickMenuDiv li {
display:inline-block; /* items are inline */
display:inline-block;
height:38px;
}

Expand Down