/usr/share/gnubg/gnubg.css is in gnubg-data 1.06.001-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | /*
* Colour definitions for gtk3.
* Ported from the gtkrc file used for gtk2.
* by
* Jeremy Moore <jmoore@ieee.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of version 3 or later of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* $Id: gnubg.css,v 1.3 2016/08/27 20:27:35 plm Exp $
*/
/*
* Style for the move list (e.g. the hint window) for highlighting the actual
* move made.
*/
#gnubg-move-done:active {
color: red;
}
/*
* Style for the move list, used in detail view, sets font colour for stat line
*/
#gnubg-move-winlossfg:active {
color: gray;
}
/*
* Style for the uncompleted move (shown as you move pieces around)
*/
#gnubg-move-current:active {
color: red;
}
/*
* Styles for showing the graphical overview of the market windows.
*
* ACTIVE is used for showing the "double, take" window
* HOVER is used for showing the "double, pass" window
* SELECTED is used for showing the "too good" window
*/
#gnubg-doubling-window-graph:active {
background-color: green;
}
#gnubg-doubling-window-graph:hover {
background-color: red;
}
#gnubg-doubling-window-graph:selected {
background-color: blue;
}
/*
* Styles for moves in game list
*/
#gnubg-gamelist-chequer-blunder {
color: red;
}
#gnubg-gamelist-chequer-error {
color: blue;
}
#gnubg-gamelist-chequer-doubtful {
color: #11a011;
}
#gnubg-gamelist-cube-blunder {
background-color: yellow;
}
#gnubg-gamelist-cube-error {
background-color: #ff80ff;
}
#gnubg-gamelist-cube-doubtful {
background-color: silver;
}
#gnubg-gamelist-luck-bad {
font-style: italic;
}
#gnubg-gamelist-luck-good {
font-weight: bold;
}
/*
* Styles for match equity table
*
* The style for "met-matching-score" is used for highlighting the row
* and column that matches the current score. For example, if the score
* is 4-away,7-away the row for 4-away and the column for 7-away is highlighted.
* The style for "met-the-score" is used to highlight the exact score, e.g.,
* in the example above, the entry at 4-away,7-away is highlighted.
*/
#gnubg-met-matching-score {
color: red;
}
#gnubg-met-the-score {
color: green;
}
/*
* Style for squares in the temperature map
*/
.gnubg-temp-map-quadrant {
border-width: 1px;
border-color: gray;
border-style: inset;
}
/*
* Style for buttons underneath the move list (Eval, Rollout, etc.)
*/
.gnubg-analysis-button {
padding-left: 0.5em;
padding-right: 0.5em;
}
/*
* Style for the progress bars displayed for game analysis and rollouts.
* Applies only to gtk 3.20 or later.
*/
progressbar {
padding: 10px;
}
|