display.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316
  1. *
  2. * @package GNUsocial
  3. * @author kim <kim@surtdelcercle.cat>
  4. * @copyleft 2019 SurtdelCercle
  5. * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported
  6. * @link http://gnu.io/
  7. */
  8. /* color green: #129642 */
  9. @import url("https://stackpath.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");
  10. @import url("https://fontlibrary.org/face/inconsolata-lgc");
  11. @font-face {
  12. font-family: 'InconsolataLGCRegular';
  13. font-weight: normal;
  14. font-style: normal;
  15. }
  16. @media screen, projection, tv {
  17. /* general styles and layout */
  18. body {
  19. background-image: url(../images/bg.png);
  20. background-repeat: no-repeat;
  21. background-color: #000;
  22. font-family: 'InconsolataLGCRegular', sans-serif;
  23. color: #129642;
  24. }
  25. input, textarea, select, option {
  26. font-family: 'InconsolataLGCRegular', sans-serif;
  27. }
  28. a {color: #129642;}
  29. a:hover {color: #129642;}
  30. abbr {border-bottom: none;}
  31. h1 {font-size: 1.6em;}
  32. h2 {font-size: 1.6em;}
  33. h3 {font-size: 1.4em;}
  34. h4 {font-size: 1.4em;}
  35. h5 {font-size: 1.2em;}
  36. h6 {font-size: 1em;}
  37. .form_settings fieldset fieldset { background-color: #000; }
  38. #wrap {
  39. background: #000 url('../images/brdr_black_dot.png') repeat-x 0px 10px;
  40. border-left: 10px solid #000;
  41. border-right: 10px solid #000;
  42. }
  43. #header {
  44. padding-top: 12px;
  45. background-color: #129642 !important;
  46. }
  47. #header, #site_nav_global_primary { height: 50px; }
  48. #core {
  49. border-top: 3px solid #129642;
  50. border-left: 1px solid #129642;
  51. border-right: 1px solid #129642;
  52. }
  53. #aside_primary_wrapper {
  54. background-color: #000;
  55. color: #129642
  56. }
  57. #content_wrapper {
  58. border-right: 1px solid #129642;
  59. background-color: #000;
  60. }
  61. #content {
  62. background-color: #000;
  63. }
  64. #site_nav_local_views_wrapper {
  65. background-color: #000;
  66. border-right: 1px solid #129642;
  67. }
  68. #footer {
  69. top: -6px;
  70. }
  71. #footer, #footer a {
  72. background: #129642;
  73. color: #fff !important;
  74. }
  75. /* header elements */
  76. address img {
  77. max-width: 150px;
  78. background-color: transparent !important;
  79. }
  80. #site_nav_global_primary {
  81. top: 16px;
  82. background: #129642;
  83. padding: 0;
  84. }
  85. #site_nav_global_primary li {
  86. margin-right: 0px;
  87. }
  88. #site_nav_global_primary li:last-child {
  89. margin-right: 10px;
  90. }
  91. #site_nav_global_primary a {
  92. padding: 2px 10px 2px 10px;
  93. height: 20px;
  94. display: block;
  95. float: left;
  96. color: #fff;
  97. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  98. }
  99. #site_nav_global_primary a:hover {
  100. color: #fff;
  101. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
  102. }
  103. #header-search {
  104. top: 1px;
  105. margin-left: 6px;
  106. }
  107. #header-search #search-q {
  108. position: relative;
  109. width: 131px;
  110. height: 12px;
  111. margin-right: 10px;
  112. padding: 2px 22px 2px 6px;
  113. border: none;
  114. font-size: 0.88em;
  115. }
  116. #header-search input[type="submit"] {
  117. border: 0;
  118. background: url(../images/magnifier.png) no-repeat 2px 1px;
  119. text-indent: -9999px;
  120. width: 20px;
  121. height: 18px;
  122. position: absolute;
  123. right: 10px;
  124. top: 2px;
  125. z-index: 2;
  126. cursor: pointer;
  127. }
  128. #site_notice {
  129. margin: 28px 0px 0px 160px;
  130. padding: 2px;
  131. background-color: #fff;
  132. }
  133. /* input forms */
  134. .input_forms {
  135. float: left;
  136. top: -20px;
  137. left: -20px;
  138. padding: 18px 20px 0px 20px;
  139. border-bottom: none;
  140. margin-bottom: 0px;
  141. background: #000 url('../images/brdr_black_dot.png') repeat-x bottom left;
  142. }
  143. #input_form_nav li a {
  144. display: block;
  145. float: left;
  146. padding: 0px 10px 1px 10px;
  147. border: 1px solid #ECECF2;
  148. font-weight: bold;
  149. line-height: 1.4em;
  150. color: #666;
  151. text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.9);
  152. background: #ececf2;
  153. }
  154. #input_form_nav li:hover a, #input_form_nav li.current a {
  155. color: #fff;
  156. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5);
  157. border: 1px solid #129642;
  158. background: #129642;
  159. }
  160. .input_form_nav_tab a, .input_form_nav_tab.current a {
  161. text-decoration: none;
  162. }
  163. .input_form fieldset fieldset label {
  164. background: none;
  165. }
  166. .form_notice .error,
  167. .form_notice .success,
  168. .form_notice .notice-status {
  169. }
  170. .form_notice_placeholder .placeholder,
  171. .form_notice textarea ,
  172. .input_form .form_settings li input,
  173. .input_form .form_settings li textarea,
  174. .threaded-replies .placeholder { /* TODO combine all these declarations */
  175. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  176. -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  177. -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  178. }
  179. .input_form .form_settings .submit {
  180. font-size: 1.1em;
  181. }
  182. /* site nav local views */
  183. #site_nav_local_views h3 {
  184. border-bottom: 1px dashed gray;
  185. margin-bottom: 1ex;
  186. padding-bottom: 1ex;
  187. color: #7a7c87;
  188. font-size: 1.1em;
  189. letter-spacing: 2px;
  190. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  191. text-transform: uppercase;
  192. }
  193. #site_nav_local_views a {
  194. display: block;
  195. line-height: 1em;
  196. padding: 1ex;
  197. text-transform: uppercase;
  198. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  199. word-wrap: break-word;
  200. }
  201. #site_nav_local_views a:hover, #site_nav_local_views .current a {
  202. color: #fff;
  203. text-decoration: none;
  204. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  205. background: #129642;
  206. }
  207. /* aside primary */
  208. #aside_primary .section {
  209. font-size: 0.88em;
  210. }
  211. #aside_primary h2 {
  212. margin-bottom: 10px;
  213. padding-bottom: 6px;
  214. background: url('../images/brdr_black_dot.png') repeat-x bottom left;
  215. color: #7a7c87;
  216. font-size: 1.25em;
  217. letter-spacing: 2px;
  218. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  219. text-transform: uppercase;
  220. }
  221. .profile_block .entity_actions {
  222. float: right;
  223. width: 110px;
  224. margin-top: 2px;
  225. margin-bottom: 2px;
  226. }
  227. .profile_block .entity_moderation:hover ul,
  228. .profile_block .entity_role:hover ul {
  229. right: 20px;
  230. }
  231. .profile_block_name {
  232. font-size: 14px;
  233. font-weight: bold;
  234. }
  235. .profile_block_location {
  236. font-weight: bold;
  237. }
  238. .profile_block_description {
  239. line-height: 1.2em;
  240. }
  241. #site_nav_object ul {
  242. background: url('../images/brdr_black_dot.png') repeat-x top left;
  243. }
  244. #site_nav_object li {
  245. display: block;
  246. margin: -8px 0px 8px 0px;
  247. padding-top: 8px;
  248. }
  249. #site_nav_object a {
  250. font-size: 14px;
  251. display: block;
  252. padding: 0px 0px 1px 10px;
  253. text-transform: uppercase;
  254. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  255. }
  256. #site_nav_object a:hover, #site_nav_object .current a {
  257. color: #fff;
  258. text-decoration: none;
  259. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  260. background: #ccc;
  261. }
  262. .section ul.entities {
  263. width: 240px;
  264. }
  265. .section .entities li {
  266. margin-right: 3.6px;
  267. margin-bottom: 5px;
  268. width: 24px;
  269. }
  270. #popular_notices .avatar {
  271. position: relative;
  272. top: 4px;
  273. margin-bottom: 6px;
  274. }
  275. #aside_primary td {
  276. padding-right: 20px;
  277. padding-bottom: 14px;
  278. }
  279. #aside_primary td .nickname {
  280. line-height: 1.6em;
  281. }
  282. .section .avatar {
  283. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  284. -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  285. -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  286. }
  287. .invite_button {
  288. height: 2.1em;
  289. line-height: 2.1em;
  290. display: block;
  291. text-align: center;
  292. color:#fff;
  293. font-weight: bold;
  294. text-transform: uppercase;
  295. font-size: 1.2em;
  296. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  297. border: 1px solid #c33541;
  298. background: #a22430;
  299. }
  300. .invite_button:hover {
  301. color: #fff;
  302. text-decoration: none;
  303. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
  304. background: #a22430;
  305. }
  306. /* notices etc */
  307. #content h1 {
  308. border-bottom: 3px solid #129642;
  309. color: #A6ADBF;
  310. font-size: 1.4em;
  311. letter-spacing: 4px;
  312. text-transform: none;
  313. }
  314. #content h1::after, #site_nav_local_views h3::after, #aside_primary h2::after {
  315. content: ':~$';
  316. }
  317. #entity_subscriptions h2::after, #entity_subscribers h2::after, #entity_groups h2::after {
  318. content: '';
  319. }
  320. #content .notice {
  321. padding: 4px 0 12px 0;
  322. border-bottom: 2px dotted #129642;
  323. }
  324. #content_inner a {
  325. color: #7a7c87;
  326. }
  327. .notice div.entry-content {
  328. font-size: 0.88em;
  329. line-height: 1.2em;
  330. margin-top: 6px;
  331. opacity: 0.6;
  332. }
  333. .notice:hover div.entry-content {
  334. opacity: 1;
  335. }
  336. .user_in .notice div.entry-content {
  337. max-width: 440px;
  338. }
  339. div.entry-content a.response:before {
  340. content: "(";
  341. }
  342. div.entry-content a.response:after {
  343. content: ")";
  344. }
  345. .notice-options {
  346. margin: 10px 0 22px 0;
  347. float: none;
  348. padding-bottom: 10px;
  349. }
  350. .notice-options .form_repeat.dialogbox {
  351. margin-right: 0px;
  352. border: 1px solid #aaa;
  353. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  354. -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  355. -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  356. }
  357. .notice-options .form_repeat.dialogbox legend {
  358. padding-top: 10px;
  359. }
  360. #content .threaded-replies .notice .author .photo {
  361. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  362. -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  363. -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  364. }
  365. .user_in.realtime-popup .notice div.entry-content {
  366. max-width: 320px;
  367. }
  368. #conversation .notices .notices {
  369. background-color: #fff;
  370. margin-left: 0 !important;
  371. width: auto;
  372. }
  373. .realtime-popup .threaded-replies {
  374. margin-left: 15px;
  375. }
  376. .realtime-popup .threaded-replies .form_notice textarea {
  377. width: 385px !important;
  378. }
  379. .realtime-popup .threaded-replies .form_notice label.notice_data-attach {
  380. top: 10px !important;
  381. right: 10px !important;
  382. }
  383. .pagination {
  384. height: 1.2em;
  385. }
  386. .entity_profile {
  387. float: left;
  388. width: 360px;
  389. margin-top: 4px;
  390. }
  391. .entity_profile .entity_depiction {
  392. margin-top: 4px;
  393. }
  394. .entity_actions {
  395. width: 140px;
  396. margin-top: 8px;
  397. margin-bottom: 10px;
  398. }
  399. .entity_actions a, .entity_actions p, .entity_actions .entity_subscribe input, .entity_actions .entity_block input, .entity_actions .entity_moderation input, .entity_actions .entity_role input, .entity_actions .entity_nudge input, .entity_actions .entity_delete input, .entity_actions input.submit {
  400. text-shadow:0 1px 0 rgba(255,255,255,0.4);
  401. background-color: #fff !important;
  402. }
  403. .entity_send-a-message .form_notice legend {
  404. text-shadow:0 1px 0 rgba(255,255,255,0.4);
  405. }
  406. .entity_send-a-message .form_notice {
  407. border: 1px solid #7B4E82;
  408. }
  409. .entity_send-a-message .form_notice #notice_action-submit {
  410. color: #fff !important;
  411. top: 46px;
  412. }
  413. .entity_subscribe .dialogbox, .entity_tag .dialogbox {
  414. border: 1px solid #aaa;
  415. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  416. -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  417. -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  418. }
  419. .entity_subscribe .dialogbox input.submit_dialogbox, .entity_tag .dialogbox input.submit_dialogbox {
  420. color: #fff !important;
  421. }
  422. #filter_tags_item .submit {
  423. left: 6px;
  424. top: -3px;
  425. }
  426. #pagination {
  427. height: 1.2em;
  428. padding-bottom: 12px;
  429. }
  430. #pagination a {
  431. color: #666;
  432. }
  433. #footer a {
  434. color: #666;
  435. }
  436. #site_nav_global_secondary {
  437. margin-bottom: 10px;
  438. }
  439. .error, .success, .notice-status {
  440. }
  441. .form_notice input.submit, .form_settings input.submit, .form_settings input.cancel, #form_invite input.submit,
  442. .entity_subscribe .dialogbox input.submit_dialogbox,
  443. .entity_tag .dialogbox input.submit_dialogbox,
  444. .form_repeat.dialogbox input.submit_dialogbox
  445. { /* TODO combine all these declarations */
  446. height: 1.9em;
  447. padding: 0px 10px;
  448. color:#fff;
  449. font-weight: bold;
  450. text-transform: uppercase;
  451. font-size: 1.2em;
  452. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  453. border: 1px solid #129642;
  454. background: #129642;
  455. }
  456. .form_notice input.submit:hover, .form_settings input.submit:hover, .form_settings input.cancel:hover, #form_invite input.submit:hover,
  457. .entity_subscribe .dialogbox input.submit_dialogbox:hover,
  458. .entity_tag .dialogbox input.submit_dialogbox:hover,
  459. .form_repeat.dialogbox input.submit_dialogbox:hover
  460. {
  461. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
  462. background: #129642;
  463. }
  464. .form_settings input#cancel, #form_action-no {
  465. background: #f2f2f2;
  466. color: #c33541;
  467. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  468. }
  469. .form_settings input#cancel:hover, #form_action-no:hover {
  470. background: #fff;
  471. color: #c33541;
  472. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  473. }
  474. .form_settings fieldset fieldset {
  475. margin-bottom: 30px;
  476. padding-top: 25px;
  477. }
  478. #invite #content p {
  479. margin-bottom: 15px;
  480. }
  481. #invite #content ul {
  482. list-style-type: none;
  483. margin-bottom: 25px;
  484. margin-left: 25px;
  485. }
  486. #invite #content li {
  487. background: url(../images/resultset_next.png) no-repeat 0px 3px;
  488. padding-left: 20px;
  489. margin-bottom: 10px;
  490. }
  491. #invite #content #form_invite ul, #invite #content #form_invite li {
  492. margin-left: 0px;
  493. padding-left: 0px;
  494. background: none;
  495. }
  496. #form_invite input[type=text], #form_invite textarea {
  497. width: 250px;
  498. padding: 5px;
  499. border: 1px solid #a6a6a6;
  500. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  501. -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  502. -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  503. }
  504. #form_invite textarea {
  505. clear: left;
  506. width: 508px;
  507. height: 48px;
  508. }
  509. #form_invite a.add_row, #form_invite a.remove_row {
  510. display: block;
  511. height: 16px;
  512. width: 16px;
  513. overflow: hidden;
  514. background-image: url('../../base/images/icons/icons-01.gif');
  515. background-repeat: no-repeat;
  516. }
  517. #form_invite a.remove_row {
  518. background-position: 0px -1252px;
  519. display: inline-block;
  520. position: relative;
  521. top: 4px;
  522. left: 10px;
  523. line-height: 4em;
  524. }
  525. #form_invite a.add_row {
  526. clear: both;
  527. position: relative;
  528. top: 10px;
  529. background-position: 0px -1186px;
  530. width: 120px;
  531. padding-left: 20px;
  532. line-height: 1.2em;
  533. }
  534. #form_invite label[for=personal] {
  535. display: block;
  536. margin-top: 25px;
  537. }
  538. #content thead th {
  539. text-align:left;
  540. }
  541. #content tbody th {
  542. vertical-align:top;
  543. text-align:left;
  544. font-weight:normal;
  545. padding-top:11px;
  546. padding-right:18px;
  547. }
  548. #content tbody tr {
  549. border-top: 1px dotted #bbb;
  550. }
  551. #content td {
  552. padding:11px 18px 11px 0;
  553. vertical-align:top;
  554. }
  555. #content td:last-child {
  556. padding-right:0;
  557. }
  558. /* Search */
  559. #form_search {
  560. padding-bottom: 10px;
  561. margin-bottom: 20px;
  562. background: url('../images/brdr_black_dot.png') repeat-x bottom left;
  563. }
  564. #form_search fieldset {
  565. margin-bottom: 0px;
  566. }
  567. #form_search ul.form_data #q {
  568. margin-left: 10px;
  569. width: 210px;
  570. }
  571. #form_search input.submit {
  572. height: 1.6em;
  573. line-height: 1.6em;
  574. font-size: 1.1em;
  575. padding-bottom: 2px;
  576. margin-left: 5px;
  577. }
  578. #noticesearch .entity_actions {
  579. margin: 0px;
  580. }
  581. #noticesearch p.error {
  582. margin-top: 60px;
  583. }
  584. /* Limited-scope */
  585. .limited-scope .entry-content .timestamp {
  586. padding-left: 20px;
  587. position: relative;
  588. }
  589. .limited-scope .entry-content .timestamp:before {
  590. content: url(../images/lock.png);
  591. position: absolute;
  592. top: -2px;
  593. left: 0px;
  594. }
  595. .limited-scope li .entry-content .timestamp {
  596. padding-left: 0px;
  597. }
  598. .limited-scope li .entry-content .timestamp:before {
  599. content: none;
  600. }
  601. .limited-scope li.limited-scope .entry-content .timestamp {
  602. padding-left: 20px;
  603. }
  604. .limited-scope li.limited-scope .entry-content .timestamp:before {
  605. content: url(../images/lock.png);
  606. position: absolute;
  607. top: -2px;
  608. left: 0px;
  609. }
  610. /* Blog */
  611. label[for=blog-entry-content] {
  612. display: none !important;
  613. }
  614. #input_form_blog td {
  615. padding-top: 0px;
  616. padding-bottom: 0px;
  617. }
  618. #input_form_blog td.mceToolbar {
  619. padding-top: 4px;
  620. }
  621. h4.blog-entry-title {
  622. margin-bottom: 8px;
  623. line-height: 1.2em;
  624. }
  625. /* Bookmark specific styles */
  626. /* TODO separate base styles and move to plugin */
  627. .bookmark h3 {
  628. margin: 0px 0px 8px 0px;
  629. float: left;
  630. line-height: 1.2em;
  631. max-width: 92%;
  632. }
  633. .bookmark-notice-count {
  634. padding: 1px 6px;
  635. font-size: 1.2em;
  636. line-height: 1.2em;
  637. background: #fff;
  638. border: 1px solid #7b8dbb;
  639. color: #666 !important;
  640. position: relative;
  641. right: 4px;
  642. margin-left: 10px;
  643. }
  644. .bookmark-notice-count:hover {
  645. text-decoration: none;
  646. background: #f2f2f2;
  647. border: 1px solid #7b8dbb;
  648. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  649. }
  650. .notice .bookmark-description {
  651. clear: both;
  652. margin-left: 0px;
  653. margin-bottom: 0px;
  654. }
  655. .notice .bookmark-author {
  656. margin-left: 0px;
  657. float: left;
  658. }
  659. .bookmark-tags {
  660. clear: both;
  661. margin-bottom: 8px;
  662. line-height: 1.6em;
  663. }
  664. ul.bookmark-tags a {
  665. padding: 1px 6px;
  666. background: #f2f2f2;
  667. color: #666 !important;
  668. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  669. font-size: 0.88em;
  670. }
  671. ul.bookmark-tags a:hover {
  672. background-color: #129642;
  673. text-decoration: none;
  674. }
  675. .bookmark-avatar {
  676. float: none !important;
  677. position: relative;
  678. top: 2px;
  679. }
  680. .bookmark div.entry-content {
  681. font-size: 0.88em;
  682. line-height: 1.2em;
  683. margin-top: 6px;
  684. opacity: 0.6;
  685. margin-bottom: 0px;
  686. }
  687. .bookmark:hover div.entry-content {
  688. opacity: 1;
  689. }
  690. #bookmarkpopup {
  691. min-width: 600px;
  692. margin-top: 0px;
  693. height: 100%;
  694. border: 10px solid #364A84;
  695. background: #364A84;
  696. }
  697. #bookmarkpopup #wrap {
  698. width: auto;
  699. min-width: 560px;
  700. padding: 40px 0px 25px 0px;
  701. margin-right: 2px;
  702. background: #000 url(../mobilelogo.png) no-repeat 6px 6px;
  703. }
  704. #bookmarkpopup #header {
  705. width: auto;
  706. padding: 0px 10px;
  707. }
  708. #bookmarkpopup .form_settings label {
  709. margin-top: 2px;
  710. text-align: right;
  711. width: 24%;
  712. font-size: 1.2em;
  713. }
  714. #bookmarkpopup .form_settings .form_data input {
  715. width: 60%;
  716. }
  717. #bookmarkpopup .form_guide {
  718. color: #777;
  719. }
  720. #bookmarkpopup #bookmark-submit {
  721. min-width: 100px;
  722. }
  723. #bookmarkpopup fieldset fieldset {
  724. margin-bottom: 10px;
  725. }
  726. #form_initial_bookmark.form_settings .form_data li {
  727. margin-bottom: 0px;
  728. }
  729. #form_new_bookmark.form_settings .bookmarkform-thumbnail {
  730. position: absolute;
  731. top: 50px;
  732. right: 0px;
  733. }
  734. /* Onboard specific styles */
  735. /* TODO move to plugin */
  736. #cboxOverlay{
  737. background: url(../images/lightbox_bg.png) repeat 0 0 !important;
  738. }
  739. #cboxContent{
  740. background: #fff url(../logo.png) no-repeat 10px bottom !important;
  741. }
  742. .onboard_iframe {
  743. background: none;
  744. padding: 10px;
  745. }
  746. .onboard_iframe #wrap {
  747. width: auto;
  748. background: none;
  749. }
  750. .onboard_welcome p {
  751. margin-bottom: 10px;
  752. }
  753. .onboard_welcome ul {
  754. list-style-type: none;
  755. margin-bottom: 10px;
  756. }
  757. .onboard_welcome ul li {
  758. background: url(../images/resultset_next.png) no-repeat 0px 3px;
  759. padding-left: 20px;
  760. margin-left: 10px;
  761. }
  762. #aside_primary #onboard_section {
  763. background: #f2f2f2;
  764. width: 196px;
  765. padding: 10px;
  766. border: 1px solid #516499;
  767. background: #fafafa;
  768. }
  769. #onboard_section H2 {
  770. position: relative;
  771. top: -11px;
  772. left: -11px;
  773. padding: 2px 0px 2px 10px;
  774. margin-right: -22px;
  775. margin-bottom: 5px;
  776. color: #fff;
  777. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
  778. background: #ccc;
  779. }
  780. #onboard_section ul {
  781. list-style-type: none;
  782. }
  783. #onboard_section .onboard-step-incomplete {
  784. background: url(../images/resultset_next.png) no-repeat 0px 1px;
  785. padding-left: 20px;
  786. margin-bottom: 10px;
  787. }
  788. #onboard_section .onboard-step-complete {
  789. background: url(../images/tick.png) no-repeat 0px 1px;
  790. padding-left: 20px;
  791. margin-bottom: 10px;
  792. text-decoration: line-through;
  793. color: #555;
  794. }
  795. /* Billing specific styles */
  796. /* TODO move to plugin */
  797. #content table.billing_info {
  798. margin-top: 10px;
  799. background:rgba(240, 240, 240, 0.4);
  800. }
  801. #content table.billing_info th {
  802. text-align: right;
  803. width: 50%;
  804. }
  805. .invalid {
  806. border: solid 2px red !important;
  807. }
  808. #payment_history table {
  809. width: 100%;
  810. }
  811. #billingadminpanel .form_settings input {
  812. margin-right: 0px;
  813. }
  814. /* Directory specific styles */
  815. /* TODO separate base styles and move to plugin */
  816. div#profile_directory div.alpha_nav > a {
  817. border-left: 1px solid #ccc !important;
  818. padding-left: 3.5px !important;
  819. padding-right: 4px !important;
  820. margin-right: 0px;
  821. float: left;
  822. line-height: 1.4em;
  823. }
  824. div#profile_directory div.alpha_nav > a.first {
  825. border-left: none !important;
  826. }
  827. div#profile_directory div.alpha_nav a.current {
  828. background-color: #ECECF2 !important;
  829. }
  830. table.profile_list {
  831. margin-top: 25px;
  832. }
  833. .profile_list th {
  834. font-size: 0.8em;
  835. }
  836. .profile_list th#created {
  837. width: 100px;
  838. }
  839. .profile_list th#subscriptions {
  840. width: 90px;
  841. }
  842. .profile_list th.current {
  843. background: none !important;
  844. }
  845. .profile_list th.current.reverse {
  846. background: none !important;
  847. }
  848. .profile_list th.current a {
  849. padding-right: 25px;
  850. background: url(../images/bluearrow_down.png) no-repeat top right;
  851. }
  852. .profile_list th.current.reverse a {
  853. background: url(../images/bluearrow_up.png) no-repeat top right;
  854. }
  855. td.entity_profile {
  856. width: auto;
  857. min-width: 250px;
  858. }
  859. .profile_list .fn {
  860. display: block;
  861. font-size: 1.1em;
  862. width: auto;
  863. }
  864. .profile_list .nickname, .profile_list .fn.nickname {
  865. position: relative;
  866. top: -8px;
  867. display: block;
  868. margin-bottom: -12px;
  869. font-size: 1.4em;
  870. }
  871. .profile_list .note {
  872. font-size: 0.88em;
  873. line-height: 1.36em;
  874. }
  875. .profile_list .entry_created, .profile_list .entry_subscriber_count, .profile_list .entry_notice_count {
  876. font-size: 0.88em;
  877. }
  878. .profile_list td.entity_actions {
  879. width: 24px;
  880. max-width: 24px;
  881. min-width: 24px;
  882. height: 20px;
  883. padding-left: 6px !important;
  884. position: relative;
  885. float: none;
  886. display: table-cell !important;
  887. }
  888. .profile_list .entity_actions ul {
  889. position: absolute;
  890. right: 20px;
  891. }
  892. .profile_list .entity_actions input {
  893. width: 22px;
  894. height: 22px;
  895. padding-top: 1px;
  896. padding-right: 0px;
  897. padding-left: 20px;
  898. display: block;
  899. overflow: hidden;
  900. font-size: 0em;
  901. border: 1px solid #129642;
  902. }
  903. .profile_list .form_group_leave input.submit,
  904. .profile_list .form_user_unsubscribe input.submit {
  905. background-position: 2px -1250px;
  906. }
  907. .profile_list .form_group_join input.submit,
  908. .profile_list .form_user_subscribe input.submit {
  909. background-position: 2px -1184px;
  910. }
  911. .profile_list .entity_actions input:hover {
  912. width: auto;
  913. padding-right: 10px;
  914. overflow: visible;
  915. font-size: 1em;
  916. line-height: 1.3em;
  917. border: 1px solid #A6ADBF;
  918. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  919. -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  920. -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  921. }
  922. /* Event specific styles */
  923. /* TODO separate base styles and move to plugin */
  924. .notice .vevent div {
  925. margin-bottom: 8px;
  926. }
  927. .event-info {
  928. margin-left: 0px !important;
  929. margin-top: 2px !important;
  930. }
  931. .notice .event-info + .notice-options {
  932. margin-top: 14px;
  933. }
  934. .notice .threaded-replies .event-info + .notice-options {
  935. margin-top: 20px;
  936. }
  937. #form_event_rsvp #new_rsvp_data {
  938. display: inline;
  939. margin: 10px 0px;
  940. }
  941. #form_event_rsvp input.submit {
  942. height: auto;
  943. padding: 0px 10px;
  944. margin-left: 10px;
  945. color:#fff;
  946. font-weight: bold;
  947. text-transform: uppercase;
  948. font-size: 1.1em;
  949. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  950. border: 1px solid #c33541;
  951. background: #a22430;
  952. }
  953. #form_event_rsvp input.submit:hover {
  954. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
  955. background: #a22430;
  956. }
  957. #wrap .vevent form.processing input.submit {
  958. text-indent: 0;
  959. background: #a22430;
  960. }
  961. #input_form_event .form_settings .form_data {
  962. float: left;
  963. }
  964. #input_form_event .form_settings .form_data li {
  965. float: left;
  966. width: auto;
  967. }
  968. #input_form_event .form_settings .form_data label {
  969. width: auto;
  970. }
  971. label[for=event-starttime], label[for=event-endtime] {
  972. display: none !important;
  973. }
  974. #event-starttime, #event-endtime {
  975. margin-top: -1px;
  976. margin-bottom: -1px;
  977. height: 2em;
  978. }
  979. #event-startdate, #event-enddate {
  980. margin-right: 20px;
  981. width: 120px;
  982. }
  983. /* QnA */
  984. .question div.question-description {
  985. font-size: 1em;
  986. line-height: 1.36em;
  987. margin-top: 0px;
  988. opacity: 1;
  989. }
  990. .question div.answer-content, .qna-full-question div.answer-content {
  991. font-size: 1em;
  992. opacity: 1;
  993. }
  994. .qna-dummy-placeholder input, .question #qna-answer, .qna-full-question #qna-answer {
  995. box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  996. -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  997. -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  998. }
  999. .question-description input.submit, .answer-content input.submit {
  1000. height: auto;
  1001. padding: 0px 10px;
  1002. margin: 6px 0px 10px 0px;
  1003. color:#fff;
  1004. font-weight: bold;
  1005. text-transform: uppercase;
  1006. font-size: 1.1em;
  1007. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  1008. border: 1px solid #c33541;
  1009. background: #a22430;
  1010. }
  1011. #qna-answer-submit {
  1012. min-width: 100px;
  1013. }
  1014. .question .question-description input.submit:hover, .question .answer-content input.submit:hover {
  1015. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.6);
  1016. background: #a22430;
  1017. }
  1018. .question .question-description #answer-form input.submit {
  1019. margin-top: 0px;
  1020. }
  1021. .question p.best, .answer p.best {
  1022. background: url(../images/rosette.png) no-repeat top left;
  1023. padding-left: 20px;
  1024. }
  1025. .question p.best:before, .answer p.best:before {
  1026. content: none !important;
  1027. }
  1028. /* Poll specific styles */
  1029. .notice div.poll-content {
  1030. opacity: 1;
  1031. }
  1032. #poll-response-submit {
  1033. min-width: 100px;
  1034. }
  1035. /* SNOD CompanyLogo styling */
  1036. /* TODO move to plugin */
  1037. #site_nav_local_views a::before {
  1038. content: '/';
  1039. }
  1040. #site_nav_local_views a.company_logo {
  1041. width: 138px;
  1042. padding: 0px;
  1043. font-weight: bold;
  1044. text-transform: none;
  1045. line-height: 1em;
  1046. margin-bottom: 0px;
  1047. position: relative;
  1048. top: -4px;
  1049. }
  1050. #site_nav_local_views a.company_logo:hover {
  1051. background: none;
  1052. color: blue;
  1053. text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
  1054. }
  1055. .company_logo img {
  1056. max-width: 138px;
  1057. margin-bottom: 4px;
  1058. }
  1059. .company_logo span {
  1060. display: block;
  1061. }
  1062. a.company_logo:hover span {
  1063. text-decoration: underline;
  1064. }
  1065. .entity_actions {
  1066. background-color: #000 !important;
  1067. }
  1068. .form_notice label.notice_data-attach, #export_data li a.rss, #export_data li a.atom, #export_data li a.foaf, .entity_edit a, .entity_send-a-message a, .entity_nudge p, .form_user_nudge input.submit, .form_user_block input.submit, .form_user_unblock input.submit, .form_group_block input.submit, .form_group_unblock input.submit, .form_make_admin input.submit, .notice .attachment, .notice-options .notice_reply, .notice-options form.form_favor input.submit, .notice-options form.form_disfavor input.submit, .notice-options .notice_delete, .notice-options form.form_repeat input.submit, #new_group a, #pagination .nav_prev a, #pagination .nav_next a, button.close, .form_group_leave input.submit, .form_user_unsubscribe input.submit, .form_group_join input.submit, .form_user_subscribe input.submit, .form_remote_authorize input.submit, .entity_subscribe a, .entity_moderation p, .entity_sandbox input.submit, .entity_silence input.submit, .entity_delete input.submit, .entity_role p, .entity_role_administrator input.submit, .entity_role_moderator input.submit, .form_user_remove_peopletag input.submit, .form_user_add_peopletag input.submit, .form_peopletag_subscribe input.submit, .form_peopletag_unsubscribe input.submit, .form_group_queue #approve, .form_group_queue #cancel, .notice-options .repeated, .form_notice label.notice_data-geo, button.minimize, .form_reset_key input.submit, .entity_tag a, .entity_clear input.submit, .entity_flag input.submit, .entity_flag p, .entity_approval input.submit, .entity_subscribe input.submit, #realtime_play, #realtime_pause, #realtime_popup, .peopletags_edit_button, .mode-private .privacy_mode {
  1069. background-image: url(../images/icons/icons-01.gif);
  1070. background-repeat: no-repeat;
  1071. background-color: transparent;
  1072. }
  1073. }/*end of @media screen, projection, tv*/