2011-09-11 19:15:06 +02:00
|
|
|
/****************************
|
2013-03-16 09:37:26 +01:00
|
|
|
* Default Theme *
|
2011-09-11 19:15:06 +02:00
|
|
|
* Author: nowrep *
|
|
|
|
****************************/
|
|
|
|
|
|
|
|
*[html-link-look="true"]
|
|
|
|
{
|
2012-09-11 10:49:38 +02:00
|
|
|
color: palette(link);
|
2011-09-11 19:15:06 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*MainWindow*/
|
|
|
|
#mainwindow
|
|
|
|
{
|
|
|
|
background-image: url(images/background.png);
|
|
|
|
background-position: top right;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: #e4eefa;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mainwindow-menubar
|
|
|
|
{
|
|
|
|
background-image:url(images/transp.png);
|
|
|
|
border:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mainwindow-menubar:item
|
|
|
|
{
|
|
|
|
color: black;
|
|
|
|
spacing: 5px;
|
|
|
|
padding: 2px 6px;
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mainwindow-menubar::item:pressed
|
|
|
|
{
|
|
|
|
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 lightgray, stop:1 darkgray);
|
|
|
|
border: 1px solid darkgrey;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mainwindow-statusbar
|
|
|
|
{
|
|
|
|
background-image:url(images/transp.png);
|
|
|
|
border:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#statusbar-ip-label
|
|
|
|
{
|
|
|
|
color:*USER-TEXT-COLOR*;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*NavigationBar*/
|
2013-04-27 13:51:08 +02:00
|
|
|
#navigationbar
|
|
|
|
{
|
|
|
|
qproperty-layoutMargin: 2;
|
|
|
|
qproperty-layoutSpacing: 3;
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
#navigationbar QSplitter::handle
|
|
|
|
{
|
|
|
|
background-color:transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-back
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-back.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-next
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-forward.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-stop
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-stop.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-reload
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-reload.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-home
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-home.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-addtab
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-addtab.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-button-supermenu
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-supmenu.png);
|
|
|
|
}
|
|
|
|
|
2014-02-07 23:14:32 +01:00
|
|
|
#navigation-button-exitfullscreen
|
|
|
|
{
|
|
|
|
qproperty-themeIcon: "view-restore";
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
/*TabWidget*/
|
|
|
|
#tabbar::tab
|
|
|
|
{
|
|
|
|
max-height: 28px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabwidget-button-opentabs
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/tabs-list-button.png);
|
|
|
|
qproperty-fixedsize: 20px 27px;
|
|
|
|
}
|
|
|
|
|
2014-03-17 17:03:16 +01:00
|
|
|
#tabwidget-button-closedtabs
|
|
|
|
{
|
2014-03-24 18:07:56 +01:00
|
|
|
qproperty-themeIcon: "user-trash-full";
|
2014-03-17 17:03:16 +01:00
|
|
|
qproperty-fixedsize: 22px 25px;
|
|
|
|
}
|
|
|
|
|
2011-10-23 14:44:18 +02:00
|
|
|
#tabwidget-button-addtab
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/navigation-addtab.png);
|
|
|
|
qproperty-fixedsize: 25px 27px;
|
|
|
|
}
|
|
|
|
|
2013-12-23 20:28:14 +01:00
|
|
|
#tabbar-button-right
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/tab-right-arrow.png);
|
|
|
|
qproperty-fixedsize: 15px 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tabbar-button-left
|
|
|
|
{
|
|
|
|
qproperty-icon: url(images/tab-left-arrow.png);
|
|
|
|
qproperty-fixedsize: 15px 25px;
|
|
|
|
}
|
|
|
|
|
2012-04-22 20:51:28 +02:00
|
|
|
/*IconProvider*/
|
|
|
|
IconProvider
|
|
|
|
{
|
|
|
|
qproperty-bookmarkIcon: url(images/star.png);
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
/*LocationBar*/
|
|
|
|
#locationbar
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
border-image: url(images/lineedit-bg.png);
|
2012-09-30 10:55:44 +02:00
|
|
|
border-width: 4px;
|
2011-09-11 19:15:06 +02:00
|
|
|
color:black;
|
2012-08-11 13:13:37 +02:00
|
|
|
padding-right: -2px;
|
|
|
|
padding-left: -2px;
|
2012-09-30 10:55:44 +02:00
|
|
|
padding-top: -2px;
|
|
|
|
padding-bottom: -2px;
|
2011-09-11 19:15:06 +02:00
|
|
|
qproperty-fixedheight: 25;
|
2012-08-13 15:41:08 +02:00
|
|
|
qproperty-leftMargin: 35;
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-bookmarkicon
|
|
|
|
{
|
|
|
|
margin-bottom: 2px;
|
|
|
|
qproperty-pixmap: url(images/starg.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-bookmarkicon[bookmarked="true"]
|
|
|
|
{
|
|
|
|
qproperty-pixmap: url(images/star.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-siteicon
|
|
|
|
{
|
|
|
|
border-image: url(images/siteicon-bg.png);
|
|
|
|
margin-left:2px;
|
|
|
|
qproperty-fixedsize:35px 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-siteicon[secured="true"]
|
|
|
|
{
|
|
|
|
border-image: url(images/siteicon-bg-secure.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-rss-icon
|
|
|
|
{
|
|
|
|
margin-bottom:2px;
|
|
|
|
qproperty-pixmap: url(images/rss.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-goicon
|
|
|
|
{
|
|
|
|
margin-bottom:2px;
|
|
|
|
qproperty-pixmap: url(images/gotoaddress.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#locationbar-down-icon
|
|
|
|
{
|
|
|
|
qproperty-pixmap: url(images/arrow-down.gif);
|
|
|
|
}
|
|
|
|
|
2013-02-08 18:44:26 +01:00
|
|
|
#locationbar-autofillicon
|
|
|
|
{
|
|
|
|
qproperty-pixmap: url(images/key.png);
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
/*WebSearchBar*/
|
|
|
|
#websearchbar
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
border-image: url(images/lineedit-bg.png);
|
2012-09-30 11:22:28 +02:00
|
|
|
border-width: 4px;
|
2011-09-11 19:15:06 +02:00
|
|
|
color:black;
|
2012-08-11 13:13:37 +02:00
|
|
|
padding-right: -2px;
|
2012-09-30 11:22:28 +02:00
|
|
|
padding-top: -2px;
|
|
|
|
padding-bottom: -2px;
|
2011-09-11 19:15:06 +02:00
|
|
|
qproperty-fixedheight: 25;
|
2012-08-14 13:12:55 +02:00
|
|
|
qproperty-leftMargin: 34;
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#websearchbar-searchbutton
|
|
|
|
{
|
2012-08-11 13:13:37 +02:00
|
|
|
/* margin-bottom:2px; */
|
|
|
|
margin-left: 2px;
|
2011-09-11 19:15:06 +02:00
|
|
|
qproperty-pixmap: url(images/search.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
#websearchbar-searchprovider-comobobox
|
|
|
|
{
|
2014-04-19 14:18:37 +02:00
|
|
|
border-image: url(images/websearchbar-bg.png);
|
2011-09-11 19:15:06 +02:00
|
|
|
padding-left:-6px;
|
|
|
|
margin-left:2px;
|
|
|
|
qproperty-fixedsize: 35px 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*BookmarksToolbar*/
|
|
|
|
#bookmarksbar QToolButton
|
|
|
|
{
|
|
|
|
border-image: url(images/transp.png);
|
2012-03-04 22:30:45 +01:00
|
|
|
border-width: 0px;
|
2011-09-11 19:15:06 +02:00
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*SideBar*/
|
|
|
|
#sidebar
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2011-10-28 23:17:38 +02:00
|
|
|
#sidebar-splitter::handle
|
|
|
|
{
|
|
|
|
background-color:transparent;
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
/*SourceViewer*/
|
|
|
|
#sourceviewer-textedit
|
|
|
|
{
|
|
|
|
border:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*SourceViewerSearch*/
|
|
|
|
SourceViewerSearch #lineEdit[notfound="true"]
|
|
|
|
{
|
|
|
|
background:#ff6666;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*SearchToolbar*/
|
|
|
|
SearchToolBar #lineEdit[notfound="true"]
|
|
|
|
{
|
|
|
|
background:#ff6666;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Click2Flash*/
|
|
|
|
#click2flash-frame
|
|
|
|
{
|
|
|
|
border: 1px solid #e8e8e8;
|
|
|
|
}
|
|
|
|
|
|
|
|
#click2flash-toolbutton
|
|
|
|
{
|
|
|
|
background: url(images/flash.png) no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#click2flash-toolbutton:hover
|
|
|
|
{
|
|
|
|
background: url(images/flashstart.png) no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
border:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*RSSManager*/
|
|
|
|
#rssmanager-frame
|
|
|
|
{
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
RSSManager QTabBar::tab
|
|
|
|
{
|
|
|
|
max-width:100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*AboutDialog*/
|
|
|
|
AboutDialog #label
|
|
|
|
{
|
|
|
|
background:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
AboutDialog #textBrowser
|
|
|
|
{
|
|
|
|
border:none;
|
2011-11-04 22:34:45 +01:00
|
|
|
margin-top: -2px; /* Workarounding rounded border on KDE */
|
2011-09-11 19:15:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*DesktopNotification*/
|
|
|
|
DesktopNotification
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
DesktopNotification #frame
|
|
|
|
{
|
|
|
|
border: 2px solid darkblue;
|
|
|
|
border-radius: 20px;
|
|
|
|
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,stop:0 #e4ecf1, stop:1 #d3e5f1);
|
|
|
|
}
|
|
|
|
|
|
|
|
DesktopNotification #heading
|
|
|
|
{
|
|
|
|
font: bold;
|
|
|
|
font-size: 13pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*BrowsingLibrary*/
|
|
|
|
BrowsingLibrary #tabs
|
|
|
|
{
|
|
|
|
qproperty-bgPixmap: url(images/library-bg-left.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowsingLibrary #frame
|
|
|
|
{
|
|
|
|
background: url(images/library-bg-top.png) no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowsingLibrary #frame_2
|
|
|
|
{
|
|
|
|
background: url(images/library-bg-top-right.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowsingLibrary #searchLine
|
|
|
|
{
|
|
|
|
background: transparent;
|
|
|
|
border-image: url(images/lineedit-bg.png);
|
|
|
|
border-width:4;
|
|
|
|
color:black;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Downloads*/
|
|
|
|
DownloadItem #fileName
|
|
|
|
{
|
|
|
|
font-size: 13pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
DownloadManager #list
|
|
|
|
{
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*JavaScript Dialogs*/
|
2011-11-24 22:18:45 +01:00
|
|
|
#jsFrame
|
|
|
|
{
|
|
|
|
background: url(images/semi-transp.png);
|
|
|
|
}
|
|
|
|
|
2011-09-11 19:15:06 +02:00
|
|
|
QFrame[js-frame="true"]
|
|
|
|
{
|
|
|
|
border: 1px solid black;
|
|
|
|
border-bottom: 0px;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFrame[js-frame2="true"]
|
|
|
|
{
|
|
|
|
border: 1px solid black;
|
|
|
|
border-top: 0px;
|
|
|
|
background-color: #f3f3f3;
|
|
|
|
}
|