mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Fixed dark color of text in locationbar when using dark theme on Linux.
This commit is contained in:
parent
7246d39ebc
commit
be26075416
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,7 +13,9 @@ src-*
|
|||
bin/qupzilla
|
||||
bin/plugins/libExamplePlugin.so
|
||||
*.autosave
|
||||
*~
|
||||
bin/core
|
||||
qupzilla.sh
|
||||
git_revision
|
||||
bin/qupzilla.exe
|
||||
Thumbs.db
|
||||
|
|
|
@ -12,11 +12,6 @@
|
|||
}
|
||||
|
||||
/*MainWindow*/
|
||||
#mainwindow-menubar:item
|
||||
{
|
||||
color: black;
|
||||
}
|
||||
|
||||
#statusbar-ip-label
|
||||
{
|
||||
padding-right: 5px;
|
||||
|
@ -115,7 +110,6 @@
|
|||
#locationbar
|
||||
{
|
||||
border-width:4;
|
||||
color:black;
|
||||
padding-left: 22px;
|
||||
padding-top: -2px;
|
||||
qproperty-fixedheight: 27;
|
||||
|
@ -187,7 +181,6 @@
|
|||
#websearchbar
|
||||
{
|
||||
border-width:4;
|
||||
color:black;
|
||||
padding-left: 30px;
|
||||
padding-top: -2px;
|
||||
qproperty-fixedheight: 27;
|
||||
|
|
|
@ -151,7 +151,7 @@ void CookieManager::slotRefreshTable()
|
|||
int counter = 0;
|
||||
QString cookieDomain;
|
||||
for (int i = 0; i < allCookies.count(); ++i) {
|
||||
const QNetworkCookie& cookie = allCookies.at(i);
|
||||
const QNetworkCookie &cookie = allCookies.at(i);
|
||||
QTreeWidgetItem* item;
|
||||
|
||||
cookieDomain = cookie.domain();
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1" colspan="2">
|
||||
<widget class="QLabel" name="fileName">
|
||||
<widget class="SqueezeLabelV1" name="fileName">
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
|
@ -164,6 +164,13 @@
|
|||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>SqueezeLabelV1</class>
|
||||
<extends>QLabel</extends>
|
||||
<header>squeezelabelv1.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
|
|
Loading…
Reference in New Issue
Block a user