changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > infra > home / static/style.css

revision 53: d25f982fb8a6
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/static/style.css	Sat Jul 20 22:31:54 2024 -0400
     1.3@@ -0,0 +1,128 @@
     1.4+body { background-color: #232220; color: antiquewhite; }
     1.5+h2 { font-family: mono; }
     1.6+
     1.7+a { text-decoration:none; color: #2B944B; font-weight: bold; }
     1.8+a:visited { color: chocolate; }
     1.9+a:hover { color: #E7600E; text-decoration:underline overline; }
    1.10+.age { white-space:nowrap; color: #87606C;}
    1.11+.date { white-space:nowrap; color: #232436; font-weight: bold;}
    1.12+.indexlinks { white-space:nowrap; }
    1.13+.parity0 { background-color: antiquewhite; color: #111111; font-family: mono; }
    1.14+.parity1 { background-color: antiquewhite; color: #111111; font-family: mono;}
    1.15+.lineno { width: 60px; color: black; font-size: x-small;
    1.16+          text-align: left;
    1.17+	  display: inline-table; }
    1.18+.author { color: #9470FF; }
    1.19+.plusline { color: green; }
    1.20+.minusline { color: red; }
    1.21+.atline { color: purple; }
    1.22+.annotate { font-size: smaller; text-align: right; padding-right: 1em; }
    1.23+tr.thisrev a { color:#999999; text-decoration: none; text-style: oblique; }
    1.24+tr.thisrev pre { color:#009900; }
    1.25+td.annotate {
    1.26+  white-space: nowrap;
    1.27+}
    1.28+div.annotate-info {
    1.29+  display: none;
    1.30+  position: absolute;
    1.31+  background-color: #FFFFFF;
    1.32+  border: 1px solid #888;
    1.33+  text-align: left;
    1.34+  color: #000000;
    1.35+  padding: 5px;
    1.36+}
    1.37+div.annotate-info a { color: #0000FF; }
    1.38+td.annotate:hover div.annotate-info { display: inline; }
    1.39+div.buttons { background-color: black; padding: 10px; }
    1.40+.buttons a {
    1.41+  background-color: #D64F53;
    1.42+  padding: 2pt;
    1.43+  color: wheat;
    1.44+  font-family: mono;
    1.45+  font-weight: bold;
    1.46+  
    1.47+}
    1.48+.navigate a {
    1.49+  background-color: #ccc;
    1.50+  padding: 2pt;
    1.51+  font-family: mono;
    1.52+  color: black;
    1.53+}
    1.54+
    1.55+.metatag {
    1.56+  background-color: #000000;
    1.57+  color: #FFFF;
    1.58+  text-align: right;
    1.59+  font-weight: bolder;
    1.60+}
    1.61+
    1.62+/* Common */
    1.63+pre { margin: 0; }
    1.64+
    1.65+.logo {
    1.66+  bottom:0;
    1.67+  right:0;
    1.68+  position:fixed;
    1.69+}
    1.70+
    1.71+/* Changelog/Filelog entries */
    1.72+.logEntry { width: 100%; }
    1.73+.logEntry .age { width: 15%; }
    1.74+.logEntry th.label { width: 16em; }
    1.75+.logEntry th { font-weight: normal; text-align: right; vertical-align: top; }
    1.76+.logEntry th.age, .logEntry th.firstline { font-weight: bold; }
    1.77+.logEntry th.firstline { text-align: left; width: inherit; }
    1.78+
    1.79+/* Shortlog entries */
    1.80+.slogEntry { width: 100%; }
    1.81+.slogEntry .age { width: 8em; font-style: italic; }
    1.82+.slogEntry td { text-align: left; vertical-align: top; }
    1.83+.slogEntry td.author { width: 15em; font-weight: bold;}
    1.84+
    1.85+/* Tag entries */
    1.86+#tagEntries { list-style: none; margin: 0; padding: 0; }
    1.87+#tagEntries .tagEntry { list-style: none; margin: 0; padding: 0; }
    1.88+
    1.89+/* Changeset entry */
    1.90+#changesetEntry { }
    1.91+#changesetEntry th { font-weight: normal; background-color: #382738; color: #E8CEBD; text-align: right; }
    1.92+#changesetEntry th.files, #changesetEntry th.description { vertical-align: top; }
    1.93+
    1.94+/* File diff view */
    1.95+#filediffEntry { }
    1.96+#filediffEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
    1.97+
    1.98+/* Graph */
    1.99+div#wrapper {
   1.100+	position: relative;
   1.101+	margin: 0;
   1.102+	padding: 0;
   1.103+}
   1.104+
   1.105+canvas {
   1.106+	position: absolute;
   1.107+	z-index: 5;
   1.108+	top: -0.6em;
   1.109+	margin: 0;
   1.110+}
   1.111+
   1.112+ul#graphnodes {
   1.113+	list-style: none inside none;
   1.114+	padding: 0;
   1.115+	margin: 0;
   1.116+}
   1.117+
   1.118+ul#graphnodes li {
   1.119+	height: 37px;
   1.120+	overflow: visible;
   1.121+	padding-top: 2px;
   1.122+}
   1.123+
   1.124+ul#graphnodes li .fg {
   1.125+	position: absolute;
   1.126+	z-index: 10;
   1.127+}
   1.128+
   1.129+ul#graphnodes li .info {
   1.130+	font-size: 70%;
   1.131+}