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