1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Fixed left margin in websearchbar after RTL commits.

- also added Seyyed Razi Alavizadeh into authors
This commit is contained in:
nowrep 2012-08-14 13:12:55 +02:00
parent 3a2fb3225c
commit 826d85a5e1
7 changed files with 39 additions and 40 deletions

View File

@ -6,6 +6,7 @@ Contributors:
Mladen Pejaković <pejakm@gmail.com> (webview context menu improvements, speed dial background) Mladen Pejaković <pejakm@gmail.com> (webview context menu improvements, speed dial background)
Alexander Samilov <alexsamilovskih@gmail.com> (tab previews) Alexander Samilov <alexsamilovskih@gmail.com> (tab previews)
Seyyed Razi Alavizadeh <s.r.alavizadeh@gmail.com> (fixed UI for RTL languages)
Bryan M Dunsmore <dunsmoreb@gmail.com> (opening background tabs, closing window when closing last tab) Bryan M Dunsmore <dunsmoreb@gmail.com> (opening background tabs, closing window when closing last tab)
Mariusz Fik <fisiu@opensuse.org> (fixed tab order in preferences dialog) Mariusz Fik <fisiu@opensuse.org> (fixed tab order in preferences dialog)
Daniele Cocca <jmc@chakra-project.org> (close tabs with middle click, initial work on speed dial) Daniele Cocca <jmc@chakra-project.org> (close tabs with middle click, initial work on speed dial)
@ -39,6 +40,7 @@ Daiki Noda <sys.pdr.pdm9@gmail.com> (Japanese)
Gábor Oberle <oberleg@myopera.com> (Hungarian) Gábor Oberle <oberleg@myopera.com> (Hungarian)
Piccoro McKay Lenz <mckaygerhard@gmail.com> (Venezulean Spanish) Piccoro McKay Lenz <mckaygerhard@gmail.com> (Venezulean Spanish)
Stanislav Kuznietsov <stanislav_kuznetsov@ukr.net> (Ukrainian) Stanislav Kuznietsov <stanislav_kuznetsov@ukr.net> (Ukrainian)
Seyyed Razi Alavizadeh <s.r.alavizadeh@gmail.com> (Persian)
Special thanks: Special thanks:

View File

@ -209,6 +209,7 @@ IconProvider
padding-left: 0px; padding-left: 0px;
padding-top: -2px; padding-top: -2px;
qproperty-fixedheight: 27; qproperty-fixedheight: 27;
qproperty-leftMargin: 35;
} }
#websearchbar-searchbutton #websearchbar-searchbutton

View File

@ -190,8 +190,8 @@ IconProvider
border-width:4; border-width:4;
color:black; color:black;
padding-right: -2px; padding-right: -2px;
padding-left: -2px;
qproperty-fixedheight: 25; qproperty-fixedheight: 25;
qproperty-leftMargin: 34;
} }
#websearchbar-searchbutton #websearchbar-searchbutton

View File

@ -189,9 +189,9 @@ IconProvider
{ {
border-width:4; border-width:4;
padding-right: -4px; padding-right: -4px;
padding-left: -4px;
padding-top: -2px; padding-top: -2px;
qproperty-fixedheight: 27; qproperty-fixedheight: 27;
qproperty-leftMargin: 30;
} }
#websearchbar-searchbutton #websearchbar-searchbutton

View File

@ -200,10 +200,10 @@ IconProvider
border-image: url(images/lineedit-bg.png); border-image: url(images/lineedit-bg.png);
border-width: 4; border-width: 4;
padding-right: -4px; padding-right: -4px;
padding-left: -4px;
padding-top: -2px; padding-top: -2px;
color:black; color:black;
qproperty-fixedheight: 23; qproperty-fixedheight: 23;
qproperty-leftMargin: 35;
} }
#websearchbar-searchbutton #websearchbar-searchbutton

View File

@ -211,8 +211,8 @@ IconProvider
border-width:4; border-width:4;
color:black; color:black;
padding-right: -4px; padding-right: -4px;
padding-left: -4px;
qproperty-fixedheight: 22; qproperty-fixedheight: 22;
qproperty-leftMargin: 30;
} }
#websearchbar-searchbutton #websearchbar-searchbutton

View File

@ -276,10 +276,6 @@ void MainApplication::loadSettings()
cssFile.open(QFile::ReadOnly); cssFile.open(QFile::ReadOnly);
QString css = cssFile.readAll(); QString css = cssFile.readAll();
cssFile.close(); cssFile.close();
//resetting style sheet
//it seems the css properties of previous theme that was not setted
// in the new theme are applied to new theme! for this we reset all properties here!!
setStyleSheet("");
#ifdef Q_WS_X11 #ifdef Q_WS_X11
if (QFile(m_activeThemePath + "linux.css").exists()) { if (QFile(m_activeThemePath + "linux.css").exists()) {
cssFile.setFileName(m_activeThemePath + "linux.css"); cssFile.setFileName(m_activeThemePath + "linux.css");