s4

annotate examples/common/default/default.css @ 322:18be0c210dc8

First implementation of icon display in blog_replies.
author HIROSE Yuuji <yuuji@gentei.org>
date Thu, 20 Oct 2016 17:20:58 +0859
parents 9735dd6c7bff
children b5185c66aacc
rev   line source
yuuji@6 1 /*
yuuji@6 2 * Default CSS definitions
yuuji@6 3 */
yuuji@259 4 body {background: #eff; margin: 2px; padding: 6px;}
yuuji@221 5 h2, h3, hr {clear: both;}
yuuji@116 6 *.warn {color: red;}
yuuji@6 7 div.topmenu {
yuuji@6 8 margin: 0; padding: 0; width: 100%; height: 2em;
yuuji@6 9 }
yuuji@6 10 div.topmenu ul {width: 100%; position: fixed; margin: 0;
yuuji@6 11 margin: 0 auto;}
yuuji@6 12 div.topmenu ul li {
yuuji@6 13 float: left; width: 18%;
yuuji@6 14 background: rgba(68,255,102,0.8); border: #3e5 2px groove; margin: 0;
yuuji@6 15 text-align: center; font-size: 80%; list-style: none;
yuuji@6 16 box-shadow: #242 2px 3px 5px;
yuuji@6 17 text-shadow: #fff 0px 0px 10px;
yuuji@6 18 }
yuuji@6 19 div.topmenu ul li:hover {background: #8fa;}
yuuji@6 20 div.topmenu ul a {text-decoration: none;}
yuuji@6 21
yuuji@6 22 ldiv.topmenu + h1 {clear: both; margin-top: 3em;}
yuuji@6 23
yuuji@6 24 td {padding-left: 0.5ex; padding-right: 0.5ex;}
yuuji@6 25 table.td2r td:nth-child(2) {text-align: right;}
yuuji@6 26 table.td3r td:nth-child(3) {text-align: right;}
yuuji@252 27
yuuji@6 28 table.form, table.b, table.b tr, table.b td, table.b th {
yuuji@6 29 border: 1px solid black; border-collapse: collapse;
yuuji@6 30 }
yuuji@185 31 table.b, table.bloghead {
yuuji@185 32 border-radius: 1ex; box-shadow: rgb(250,222,222) 1px 2px 3px;
yuuji@185 33 }
yuuji@6 34 td.warn {background: #fcc;}
yuuji@6 35 input[type="checkbox"][name="rm"]:checked ~ table {background: red;}
yuuji@6 36 input[type="checkbox"][name="rm"] ~ span {display: none;}
yuuji@6 37 input[type="checkbox"][name="rm"]:checked ~ span {display: inline;}
yuuji@6 38
yuuji@6 39 input[type="radio"][value="replace"] + input.replace[type="file"] {
yuuji@6 40 visibility: hidden;}
yuuji@6 41 input[type="radio"][value="replace"]:checked + input.replace[type="file"] {
yuuji@6 42 visibility: visible;
yuuji@6 43 }
yuuji@153 44 label.admin span {border-bottom: 1px solid blue;}
yuuji@153 45 label.admin:after {content: "(ADMIN)"; color: red; text-decoration: none;}
yuuji@6 46
yuuji@6 47 /* keep/edit/rm action selector */
yuuji@6 48 input.action ~ input:not(.action), input.action ~ textarea {
yuuji@6 49 display: none;
yuuji@6 50 }
yuuji@6 51 input.action[value="edit"]:checked ~ input {display: inline;}
yuuji@6 52 input.action[value="edit"]:checked ~ textarea {display: block;}
yuuji@6 53 input.action[value="edit"]:checked ~ span {display: none;}
yuuji@6 54 input.action[value="rm"]:checked ~ span {background: red;}
yuuji@6 55 label.confirm {display: none;}
yuuji@6 56 input.action[value="rm"]:checked ~ label.confirm {
yuuji@6 57 display: inline;
yuuji@6 58 }
yuuji@6 59
yuuji@241 60 form.replyblog {xxx-margin-bottom: 40%;}
yuuji@6 61 div.blogcomment {
yuuji@6 62 position: fixed; bottom: 0; left: 0;
yuuji@193 63 z-index: 2; background-color: rgba(250,222,222,0.6);
yuuji@6 64 }
yuuji@211 65 /* div.blogcomment textarea:focus {background: yellow;
yuuji@211 66 position: fixed; top: 0; bottom: auto; } Need to consider narrow display */
yuuji@6 67 div.blogcomment * {opacity: 1.0;}
yuuji@6 68 table.bloghead, .bloghead tr, .bloghead td {
yuuji@6 69 border: 1px solid black; border-collapse: collapse;
yuuji@6 70 min-width: 30em;
yuuji@6 71 }
yuuji@293 72 table.bloghead tr.preface {
yuuji@6 73 font-size: 150%; background: yellow; text-align: center;
yuuji@290 74 white-space: pre-wrap;
yuuji@6 75 }
yuuji@6 76 table.bloghead {margin-bottom: 1em;}
yuuji@6 77
yuuji@6 78 table.blog_replies, .blog_replies tr, .blog_replies td {
yuuji@6 79 border: 1px solid black; border-collapse: collapse;
yuuji@185 80 white-space: pre-wrap;
yuuji@6 81 }
yuuji@322 82 table.blog_replies p.proficon {
yuuji@322 83 float: right; margin: 0 1ex 0 0;
yuuji@322 84 }
yuuji@219 85 table.blog_replies+p.update_link {margin-top: 0; margin-bottom: 14em;}
yuuji@291 86 .blog_replies td.repl {
yuuji@6 87 vertical-align: top; min-width: 30em; height: 3em;
yuuji@185 88 max-width: 50em;
yuuji@6 89 }
yuuji@322 90 .blog_replies td:first-child {width: 14em;}
yuuji@251 91 .blog_replies iframe {
yuuji@251 92 width: 400px; height: 300px; max-width: 50em; max-height: 20em;
yuuji@251 93 padding: 0; border: 0;
yuuji@251 94 }
yuuji@287 95 .blog_replies td.new { /* New Article from last visit */
yuuji@287 96 background: white
yuuji@286 97 }
yuuji@291 98 table.mini, table.mini tr, table.mini th, table.mini td {
yuuji@291 99 margin: 0; border-width: 0;
yuuji@291 100 border-collapse: collapse;
yuuji@291 101 vertical-align: top; width: auto; height: 1em;
yuuji@291 102 }
yuuji@294 103 table.mini th, table.mini td {text-align: justify;}
yuuji@293 104 table.mini td, table.mini th {padding: 1px 1ex; min-width: 1em;}
yuuji@291 105 table.mini {margin-left: 1em; border-left: 2px solid #686;}
yuuji@291 106
yuuji@320 107 /* "visibility: collapse" not working on chromium browser */
yuuji@320 108 div.noprofimg tr.profimg {visibility: collapse; display: none;}
yuuji@319 109 div.noprofimg tr:hover + tr.profimg, div.noprofimg tr:active + tr.profimg,
yuuji@319 110 div.noprofimg tr.profimg:hover, div.noprofimg tr.profimg:active {
yuuji@320 111 visibility: visible; display: table-row;}
yuuji@311 112
yuuji@322 113 /* Used in user's home page */
yuuji@311 114 p.profimg {float: left; max-width: 50%; max-height: 400px;
yuuji@311 115 overflow: hidden; margin: 0 1em 1ex;
yuuji@146 116 padding: 0; border: white 1px solid; box-shadow: 2px 3px 4px
yuuji@146 117 }
yuuji@149 118 p.profimg img {max-width: 400px;}
yuuji@146 119 div.home+* {clear: both;}
yuuji@311 120 body.grouphome p.groupimg {
yuuji@315 121 float: right; margin: 0 1em 1ex;
yuuji@311 122 overflow: hidden;}
yuuji@315 123 body.grouphome p.groupimg img {
yuuji@315 124 max-width: 380px; max-height: 380px;}
yuuji@6 125
yuuji@6 126 div.fold {margin-top: 1em; border-top: 1px solid black; padding-top: 1em;}
yuuji@237 127 div.noborder {border: 0px; margin: 0;}
yuuji@6 128 div.fold > div {
yuuji@32 129 xxdisplay: none; max-height: 80%; overflow: auto;
yuuji@30 130 height: 0px; opacity: 0; padding: 0 1ex;
yuuji@6 131 }
yuuji@59 132 div.fold input[type="checkbox"]:checked ~ div,
yuuji@59 133 div.fold input[type="radio"]:checked ~ div {
yuuji@193 134 display: block; background: #fadede;
yuuji@30 135 height: auto; opacity: 1.0; transition: 1s;
yuuji@30 136 }
yuuji@260 137
yuuji@260 138 /* fold2!! */
yuuji@260 139 div.foldtabs {
yuuji@289 140 position: relative; height: 5em; margin-top: 1em;
yuuji@260 141 border-top: 1px solid black; padding-top: 1em;
yuuji@260 142 }
yuuji@260 143 div.foldtabs > div {
yuuji@260 144 position: absolute; top: 2.5em; opacity: 0.0; background: pink;
yuuji@289 145 margin: 2px; scroll: auto;
yuuji@260 146 }
yuuji@260 147 div.foldtabs input[type="radio"] {display: none;}
yuuji@260 148 div.foldtabs input[type="radio"]:checked + label + div {
yuuji@260 149 display: block; opacity: 1.0; transition: 0.2s; width: 100%;
yuuji@260 150 margin: 0; z-index: 2;
yuuji@260 151 }
yuuji@260 152 div.foldtabs > label {
yuuji@260 153 border: 1px outset #ddd; background: #ddd; xbackground: pink;
yuuji@260 154 border-top-left-radius: 0.8em; border-top-right-radius: 0.8em;
yuuji@260 155 margin: 0;
yuuji@260 156 padding: 0.2ex 0.5em; height: 3em;
yuuji@260 157 }
yuuji@260 158 div.foldtabs > input:active + label {background: white;}
yuuji@260 159 div.foldtabs input:checked + label {
yuuji@260 160 background: pink; border: pink 1px solid; border-bottom-width: 6px;
yuuji@260 161 }
yuuji@260 162 div.foldtabs input:checked + label:last-of-type {border-width: 1px;}
yuuji@260 163 input[type="checkbox"] + label + input[type="submit"] {display: none;}
yuuji@260 164 input[type="checkbox"]:checked + label + input[type="submit"] {
yuuji@260 165 display: inline;}
yuuji@289 166 div.foldtabs p {margin: 0;}
yuuji@260 167
yuuji@199 168 div.dumptable {max-height: 15em; overflow: auto;}
yuuji@296 169 div.dumptable tr:hover {background-color: #fee;}
yuuji@258 170 table.dumpblogs td,
yuuji@258 171 div.lcto td { /* LINK + CTIME + TITLE + OWNER + something... */
yuuji@258 172 white-space: nowrap; overflow: hidden;}
yuuji@258 173 table.dumpblogs td:nth-child(4),
yuuji@258 174 div.lcto td:nth-child(2) {max-width: 8em;}
yuuji@258 175 table.dumpblogs td:nth-child(5), /* team */
yuuji@258 176 table.dumpblogs td:nth-child(6), /* title */
yuuji@258 177 div.lcto td:nth-child(3), /* title */
yuuji@258 178 div.lcto td:nth-child(4) /* owner */
yuuji@258 179 {max-width: 14em;}
yuuji@258 180
yuuji@258 181
yuuji@258 182 /*
yuuji@252 183 table.dumpblogs td:nth-child(4) {
yuuji@256 184 max-width: 7.6em; overflow: hidden;}
yuuji@252 185 table.dumpblogs td:nth-child(5),
yuuji@252 186 table.dumpblogs td:nth-child(6) {
yuuji@256 187 max-width: 12em; overflow: hidden;}
yuuji@252 188 table.dumpblogs td:nth-child(7) {
yuuji@256 189 min-width: 5em; overflow: hidden;}
yuuji@258 190 */
yuuji@6 191
yuuji@6 192 /********************* icon list *********************/
yuuji@6 193 div.iconlist {
yuuji@6 194 text-align: center; float: left; margin: 1ex 1em;
yuuji@6 195 border: dotted #dfd 2px; padding: 1ex;
yuuji@6 196 }
yuuji@6 197 div.iconlist p {margin: 0; padding: 0;}
yuuji@6 198 div.iconlist p.tag {background: #ffa; border-radius: 4em;}
yuuji@19 199 div.iconlist p._temp {background: cyan;}
yuuji@19 200 div.iconlist p._lecture {background: pink;}
yuuji@19 201 div.iconlist p._admin {background: yellow;}
yuuji@19 202 div.iconlist p._friend {background: fuchsia;}
yuuji@23 203 div.iconlist p._fellows {background: #9f9;} /* light green */
yuuji@24 204 div.iconlist p._club {background: #4bb;} /* light teal */
yuuji@23 205 div.iconlist p._event {background: maroon; color: white;}
yuuji@23 206 div.iconlist p._misc {background: purple; color: white;}
yuuji@38 207 div.iconlist p._record {background: red; color: white;}
yuuji@190 208 div.iconlist p._info {background: #eff;} /* light cyan */
yuuji@190 209 div.iconlist p._support {background: #ffe;} /* light yellow */
yuuji@190 210 div.iconlist p._test {background: #ffb6c1;} /* light pink */
yuuji@6 211 div.xy120x120 {min-width: 120px; min-height: 140px;}
yuuji@6 212 div.xy96x96 {min-width: 96px; min-height: 116px;}
yuuji@6 213 div.xy50x50 {min-width: 50px; min-height: 70px;}
yuuji@259 214 div.moderated {background: rgba(255, 215, 0, 0.3);} /* gold */
yuuji@259 215 body.moderated {background: #fffec4;} /* #faed8a */
yuuji@259 216 body.ismember, div.ismember {border-top: 4px red solid; margin-top: 0;}
yuuji@243 217 div.right, div.search {clear: both; float: right;}
yuuji@234 218 *.clear {clear: both;}
yuuji@243 219 div.search input[type="text"] {
yuuji@243 220 border: solid 1px #bbb; border-radius: 0.5ex; min-height: 20px;
yuuji@243 221 margin: 1em; padding: 0 0.5ex; padding-left: 18px;
yuuji@243 222 background: url("../../img/loupe.png") left center no-repeat
yuuji@243 223 rgba(242,240,240,0.7);
yuuji@243 224 }
yuuji@126 225
yuuji@126 226 /*
yuuji@126 227 * PR Web
yuuji@126 228 */
yuuji@126 229 body.pr {font-size: 200%;}
yuuji@126 230 body.pr h1 {
yuuji@126 231 text-align: center; width: 80%; padding: 3ex 0; margin: 0 auto;
yuuji@126 232 background: #ffefef; border: double 5px navy;
yuuji@126 233 }