Jump to content

Open Coterie  ·  19 members

SMF Staff People

Category

Coding and Graphics

Rules

  1. What's new in this coterie
  2. OK. If I end up figuring it out, I'll share it back here in case anyone else finds it useful.
  3. I honestly don't know, I'm not sure where the controls for that are in the back-end.
  4. I'm wondering what I would need to do to enable the quote function to default to a character's name in the "author=" field when that character is the one who made the post being quoted. Presently, it puts the username in their, and it's easy enough to just manually edit that to say the character's name, but is there a way I can make that happen automatically?
  5. Realized a few minutes ago that I was running into this exact same issue. Followed the instructions to add the extra LEFT JOINs and now things are working perfectly again. Thanks!
  6. If you have a lot of characters that don't have an alliance, you can either create an alliance called unaffiliated or rogue or whatever, or rename alliances to something else that you do have, like race or something. c:
  7. ACM is designed to have alliances at the very least. It cannot operate without them.
  8. I may have stumbled into a solution of sorts. When I enable Alliances, any characters that are in an alliance show up on that first screen. If possible, I'd still like to have characters show up in that listing even if they are not currently in an alliance.
  9. Hello there. I've been playing around with ACM for the last day-ish, and first and foremost I want to say thank you Arceus for the hard work you put into it. Truly, it's a work of art. I'm on SMF 2.0.15, and the thing that has me scratching my head right now is that, even after I have created a couple characters, when I first go into the Character Manager, it displays a message stating "There are no characters created. Be the first one!" I dug through the Characters.template.php and it seems like $context['character_list'] must be coming back empty. I just don't know why. Has anyone else run into this, and is there a simple fix? I'm happy to provide more detail if needed, or even provide temporary admin access to my testdev server if that would be helpful. Again, thank you for creating this. The mod is incredible and I'm excited to put it in use on my board. I think my users will have a blast with it.
  10. Ohhhhhh my god, thank you. ...I also checked the head matter and the theme likes to point to the index.min.css, so between fixing that hanging line and putting the mod's css in the min file... it's working now. You are a true magician, thank you. ❤️
  11. I found it. So right before the Character Manager things is this: /* the background's first level only */ .dropmenu li a, .dropmenu li ul {border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;-ms-border-radius: 4px;-o-border-radius: It does not end properly, so none of the CSS after it is factored in and all of that is ACM stuff. So you'll have to check the original CSS for NightBreeze and correct this line. c:
  12. Yeah that's what I thought. I just can't for the life of me figure out *why.* /** * ## NightBreeze Theme * ## author: SychO (M.S) * ## sycho.22web.org * * ## Copyright (C) 2018 SychO (M.S) * ## This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. * ## 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 * ## LICENSE.TXT * * ## version 2.0 */ @import url('https://fonts.googleapis.com/css?family=Montserrat:300,400'); @import url('https://fonts.googleapis.com/css?family=Roboto'); /* Styles for the general looks. ------------------------------------------------------- */ /* Normal, standard links. */ a:link, a:visited { color: #c2c2c2; text-decoration: none; -webkit-transition: all .25s ease; -moz-transition: all .25s ease; -o-transition: all .25s ease; -ms-transition: all .25s ease; transition: all .25s ease; font-weight: 600; } footer a:link,footer a:visited,header a:link, header a:visited { color: #c9c9c9; } footer a { border-bottom: 1px dotted; } footer a:hover,header a:hover { color: #037afe; } a:hover { cursor: pointer; text-decoration: none; color: #1f66ff; } /* Links that open in a new window. */ a.new_win:link, a.new_win:visited { } a.new_win:hover { } /* Tables should show empty cells. */ table { empty-cells: show; border-spacing: 0 1px; border-collapse: unset !important; } /* Set a fontsize that will look the same in all browsers. */ body { background: #010714; font: 78%/130% Roboto,"Verdana", "Arial", "Helvetica", sans-serif; margin: 0 auto; padding: 0; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; min-width: unset !important; } /* Help popups require a different styling of the body element. */ body#help_popup { padding: 1em; } /* use dark grey for the text, leaving #000 for headers etc */ body, td, th, tr { color: #a4a2a2; } tr.windowbg, tr.windowbg2 { } tr.stickybg { background: #2e2222; } tr.lockedbg { background: #302c24; } tr:after { display: none !important; } .table_grid tr.windowbg td,.table_grid tr.windowbg2 td { background-color: transparent; } td.avatared { position: relative; } td.ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; } td>.avatar { width: 46px; height: 46px; margin: -7px -4px -11px -3px; border-radius: 2px; } td img.avatar_icon { position: absolute; right: 9px; bottom: 8px; padding: 3px; background: #cdcdcd; margin: 0px; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; -o-border-radius: 100%; display: none; } .table_grid td.windowbg,.table_grid td.windowbg2 { border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; } /* This division wraps the entire forum when a forum width is set. */ div#wrapper { margin: 0 auto; min-width: 764px; max-width: 2300px; } /* lets give all forms zero padding/margins */ form { padding: 0; margin: 0; } /* We can style the different types of input buttons to be uniform throughout different browsers and their color themes. .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers .button_reset - covers input[type=reset] and button[type=reset] throughout all browsers .input_check - covers input[type=checkbox] throughout all browsers .input_radio - covers input[type=radio] throughout all browsers .input_text - covers input[type=text] throughout all browsers .input_file - covers input[type=file] throughout all browsers */ input, button, select, textarea, #moreNewsItems_link a, .buttonlist ul li a, .nextlinks a, .nextlinks_bottom a,ul.quickbuttons li a, .buttonLike, .parentButtonLike a { font: 95%/115% Roboto, verdana, Helvetica, sans-serif; color: #000; background: #fff; border: none; padding: 12px 12px; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; } .nextlinks a, .nextlinks_bottom a, .buttonlist ul li a, #moreNewsItems_link a, .buttonLike, .parentButtonLike a { display: inline-block; margin: 2px 0; vertical-align: top; } /* Select elements look horrible with the extra padding, so leave them unpadded. */ select { padding: 10.5px 12px; vertical-align: bottom; } /* Add some padding to the options instead. */ select option { padding: 1px; } /* The font size of textareas should be just a little bit larger. */ textarea { font: 100%/130% Roboto, verdana, Helvetica, sans-serif; -webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box; } /* Buttons should be styled a bit differently, in order to make them look more button'ish. */ input[type="button"], .nextlinks a, .nextlinks_bottom a, .buttonlist ul li a, #moreNewsItems_link a, input[type="submit"], button, .button_submit, .button_reset,ul.quickbuttons li a, .buttonLike, a.buttonLike, .parentButtonLike a { background: #204a93; cursor: pointer; font-weight: normal; color: white; font-weight: 600; text-transform: uppercase; -webkit-transition: all .25s ease; -moz-transition: all .25s ease; -o-transition: all .25s ease; -ms-transition: all .25s ease; transition: all .25s ease; } input:hover, textarea:hover, button:hover, select:hover { } .parentButtonLike.invert a, .buttonLike.invert, .buttonLike.invert.notButton:hover, .buttonLike:hover, .parentButtonLike a:hover, input[type="button"]:hover, .nextlinks a:hover, .nextlinks_bottom a:hover, .buttonlist ul li a:hover, #moreNewsItems_link a:hover, input[type="submit"]:hover, button:hover, .button_submit:hover, .button_reset:hover,ul.quickbuttons li a:hover { background: #0e121a; color: #838383; } .buttonLike.invert:hover, .parentButtonLike.invert a:hover { background: #204a93; color: #f4f4f4; } .buttonLike.icon_style { padding: 0; width: 28px; background: rgba(255, 255, 255, 0.04); text-align: center; color: #878787; margin: 2px 1px; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; } .buttonLike.facebook:hover { background-color: #3b5998 !important; } .buttonLike.youtube:hover { background-color: #ff0000 !important; } .buttonLike.twitter:hover { background-color: #1da1f2 !important; } .buttonLike.steam:hover { background-color: #000000 !important; } footer .buttonLike.icon_style { background: rgba(255, 255, 255, 0.02); font-weight: 100; } footer .buttonLike.icon_style:hover { background: rgba(255, 255, 255, 0.09); color: #ffffff; } .buttonLike.icon_style:hover { background: rgba(255, 255, 255, 0.13); color: white; } .buttonLike.icon_style i { font-size: 17px; line-height: 28px; } .buttonLike.notice { background: #ff680070; } .buttonLike.notice:hover { background: #ff68008a; } .buttonLike.tiny, .parentButtonLike.tiny.invert a { padding: 8px 8px 7px; font-size: 11px; } .buttonLike.realTiny, .parentButtonLike.realTiny.invert a { font-size: 11px; padding: 6px 8px 5px; } .buttonLike.notButton { cursor: auto; } .bRadius, .parentBradius a { border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; } .nextlinks a:first-child, .nextlinks_bottom a:first-child { display: block; float: left; } .nextlinks a:last-child, .nextlinks_bottom a:last-child { display: block; float: right; } .nextlinks { display: block; } input:focus, textarea:focus, button:focus, select:focus { } /* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */ input.input_check, input.input_radio { border: none; background: none; } h3.catbg input.input_check { margin: 9px 7px 0 7px; } /* Give disabled text input elements a different background color. */ input[disabled].input_text { background-color: #eee; } /* Standard horizontal rule.. ([hr], etc.) */ hr, .hrcolor { height: 1px; border: 0; color: #ccc; background-color: rgba(255, 255, 255, 0.09); } /* By default set the color on these tags as #000. */ h1, h2, h3, h4, h5, h6 { color: #fff; font-size: 1em; margin: 0; padding: 0; } header h1, header h2, header h3, header h4, header h5, header h6 { color: white; } /* Fieldsets are used to group elements. */ fieldset { border: 2px solid #cdcdcd; padding: 1em; margin: 0 0 0.5em 0; } fieldset legend { font-weight: bold; color: #e3e3e3; text-transform: uppercase; padding: 0 7px; } /* No image should have a border when linked. */ a img { border: 0; } a.help img[alt="Help"] { vertical-align: middle; } img[alt="Online"], img[alt="Offline"] { vertical-align: top; margin-top: 1px; width: 13px; } /* Define strong as bold, and em as italics */ strong { font-weight: bold; } em { font-style: italic; } .newNumber { display: inline-block; padding: 4px 6px 3px; background: rgba(255, 0, 0, 0.5); color: white; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; float: right; margin: -4px 0; } .newNumber.newNumberAbs { position: absolute; top: 6px; right: 2px; display: block; } /* Alternative for u tag */ .underline { text-decoration: underline; } /* Common classes to easy styling. ------------------------------------------------------- */ .floatright { float: right; } .floatleft { float: left; } .flow_auto { overflow: auto; } div#profileview #basicinfo>.windowbg, div#profileview #detailedinfo>.windowbg2 { background: transparent; } div#profileview { background: #1c2435; } #subaccount_list .subaccount { width: 200px; margin: .3em; padding: .5em; float: left; } #subaccount_list ul li { line-height: 1em; height: 1em; margin: 2px 0; overflow: hidden; padding: 5px; text-align: center; border: 1px solid #ccc; } #subaccount_list .name { font-size: 1.3em; } #subaccount_list .profile_buttons li, #subaccount_list .action_buttons li, .subaccount_icons li { border: none; float: left; margin: 0 .3em; padding: 0; height: 20px; } .subaccount_icons img { vertical-align: middle; } #subaccount_list .action_buttons { height: 1.5em; } .flow_hidden { overflow: hidden; } form#postmodify div[style="width: 98.8%;"] { width: 100% !important; -webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box; } #postmodify .richedit_resize { display: none; } .flow_hidden .windowbg, .flow_hidden .windowbg2 { margin-top: 2px; } .clear { clear: both; } .clear_left { clear: left; } .clear_right { clear: right; } /* Default font sizes: small (8pt), normal (10pt), and large (14pt). */ .smalltext, tr.smalltext th { font-size: 0.85em; font-family: Roboto,verdana, sans-serif; } .middletext { font-size: 0.9em; line-height: 1em; } .normaltext { font-size: 1em; line-height: 1.2em; } .largetext { font-size: 1.4em; } .centertext { margin: 0 auto; text-align: center; } .righttext { margin-left: auto; margin-right: 0; text-align: right; } .lefttext { margin-left: 0; margin-right: auto; text-align: left; } .double_height { line-height: 2em; } /* some common padding styles */ .padding { padding: 0.7em; } .main_section, .lower_padding { padding-bottom: 0.5em; } /* a quick reset list class. */ ul.reset, ul.reset li { padding: 0; margin: 0; list-style: none; } .poster ul.greezeInsider { background: rgba(0, 0, 0, 0.2); padding: 4px 7px; margin: 0 -6px; max-width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .poster ul.greezeInsider>li>strong {float: left;} .poster ul.greezeInsider>li:not(.karma_allow) { text-align: right; padding: 2px 0; } ul.reset li.profile ul { margin-right: 0; } li.profile a,li.email a,.pLik a { display: inline-block; padding: 0; width: 28px; text-align: center; background: rgba(0, 0, 0, 0.13); border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; } li.profile a img, li.email a img, .pLik a img { opacity: 0.6; } li.profile a:hover img, li.email a:hover img, .pLik a:hover img { opacity: 1; } li.profile a img, li.email a img, .pLik a img { height: 16px; padding: 6px 0px; vertical-align: bottom; } li.profile a:hover, li.email a:hover, .pLik a:hover { background: rgba(0, 0, 0, 0.35); } li.profile a img, .pLik a img { vertical-align: top; } ul.reset li.membergroup, ul.reset li.postgroup, .poster li.warning, #basicinfo h4 span.position { display: inline-block; padding: 7px 14px; margin: 3px 0 0; text-transform: uppercase; background: rgba(0,0,0,0.2); color: #c9c9c9; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; font-weight: 600; } /* Some BBC related styles. ------------------------------------------------------- */ /* A quote, perhaps from another post. */ blockquote.bbc_standard_quote, blockquote.bbc_alternate_quote { font-size: 11px; color: #c0c0c0; line-height: 1.4em; background: url(../images/theme/quote.png) 0.1em 0.1em no-repeat; /* border-top: 2px solid #99A; */ /* border-bottom: 2px solid #99A; */ padding: 1.1em 1.4em; margin: 0em 0 0.3em 0; overflow: auto; } /* Alterate blockquote stylings */ blockquote.bbc_standard_quote { background-color: #0b0e14; } blockquote.bbc_alternate_quote { background-color: #181f2b; } /* A code block - maybe PHP ;). */ code.bbc_code { display: block; font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace; font-size: x-small; background: rgb(11, 14, 20); border: 2px solid rgb(32, 74, 147); border-top: 0; line-height: 1.5em; padding: 3px 1em; overflow: auto; white-space: nowrap; /* Show a scrollbar after about 24 lines. */ max-height: 24em; } /* The "Quote:" and "Code:" header parts... */ .codeheader, .quoteheader { color: #cfcfcf; font-size: 11px; font-weight: bold; padding: 3px 7px; background: rgb(11, 14, 20); border-bottom: 2px solid rgb(32, 74, 147); } .quoteheader { background: #0b0e14; border-bottom: 0; margin-bottom: 1px; } blockquote { border-left: 2px solid #204a93; } /* For links to change the code stuff... */ .codeoperation { font-weight: normal; } /* Styling for BBC tags */ .bbc_link:link, .bbc_link:visited { border-bottom: 1px solid #A8B6CF; } .bbc_link:hover { text-decoration: none; border-bottom: 1px solid #346; } .bbc_size { line-height: 1.4em; } .bbc_color a { color: inherit; } .bbc_img { border: 0; max-width: 100%; } .bbc_table { font: inherit; color: inherit; } .bbc_table td { font: inherit; color: inherit; vertical-align: top; padding: 6px 10px; background: #0b0e14; } .bbc_u { text-decoration: underline; } .bbc_list { text-align: left; } .bbc_tt { font-family: Roboto,"dejavu sans mono", "monaco", "lucida console", "courier new", monospace; } /* Generally, those [?] icons. This makes your cursor a help icon. */ .help { cursor: help; } /* /me uses this a lot. (emote, try typing /me in a post.) */ .meaction { color: red; } /* Highlighted text - such as search results. */ .highlight { font-weight: bold; color: #ff7200 !important; font-size: 1.1em; } /* A more discreet highlight color, for selected membergroups etc. */ .highlight2 { background-color: #D1E1EF; color: #000 !important; } /* Generic, mostly color-related, classes. ------------------------------------------------------- */ .titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td { color: #e9e9e9; font-family: Roboto,arial, helvetica, sans-serif; font-size: 1.1em; font-weight: bold; background: #204a93; padding: 0 10px; border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; } .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th { color: #fff; font-family: Roboto,arial, helvetica, sans-serif; font-size: 1.1em; font-weight: bold; background: #204a93; padding: 0px 8px; } .catbg, .catbg2 { border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; } .cat_bar h3.catbg, .cat_bar h4.catbg { font-family: Montserrat; font-weight: 300; } .cat_bar h3.catbg a, .cat_bar h4.catbg a { font-weight: 400; } /* adjust the table versions of headers */ tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2 { padding: 0 6px; } tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited { color: #222; } tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited { color: #fff; } .catbg select { height: 40px; /* font-size: 0.85em; */ } /* Alternating backgrounds for posts, and several other sections of the forum. */ .windowbg, #preview_body { color: #a4a4a4; background-color: #1c2432; } .windowbg2 { color: #a4a4a4; background-color: #151b26; } .windowbg3 { color: #000; background-color: #070b14; } .windowbg:not(td), .windowbg2:not(td) { border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; } /* the page navigation area */ .pagesection { font-size: 0.9em; overflow: hidden; margin-bottom: 1px; } div.pagesection div.floatright input { margin-top: 3px; } .pagelinks { padding: 7px 10px; background: #0f131c; text-transform: uppercase; float: left; margin: 7px 0; } .pagelinks>a, strong.navPages, a.navPages { line-height: 28px; padding: 0 11px; display: inline-block; background: #4683c7; color: white; margin: 0px -1px; } .subject a.navPages { /* float: left; */ margin: 0 0px 0 -1px; line-height: 20px; padding: 0 8px; } .subject small { } .pagelinks a:hover, a.navPages:hover { background: #579be7; } .pagelinks>strong, strong.navPages { background: #2b3851; } /* Colors for background of posts requiring approval */ .approvebg,.approvebg2 { color: #5facfa; background-color: #192f57; } .approve_post { font-weight: 600 !important; text-decoration: underline; } /* Color for background of *topics* requiring approval */ .approvetbg,.approvetbg2 { background-color: #2e2a18; } /* Sticky topics get a different colors */ .topic_table:not(#mlist):not(.borderLess) tr:not(.titlebg) td:first-child { border-left: 4px solid #253045; } .topic_table:not(#mlist):not(.borderLess) tr.stickybg td:first-child { border-left: 4px solid #81080b; } .topic_table:not(#mlist):not(.borderLess) tr.locked_sticky td:first-child { border-left: 4px solid #204a93; } .stickybg2 { background: #f2e3d9; } /* Locked posts get a different shade, too! */ .topic_table:not(#mlist):not(.borderLess) tr.lockedbg td:first-child { border-left: 4px solid #d0ae6a; font-style: italic; } .lockedbg2 { background: #d8e1e7; font-style: italic; } /* Posts and personal messages displayed throughout the forum. */ .post, .personalmessage { overflow: auto; line-height: 1.4em; padding: 0.1em 0; } /* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */ .signature, .attachments { overflow: auto; clear: right; padding: 1em 10px; line-height: 1.4em; font-size: 0.85em; background: rgba(255, 255, 255, 0.04); border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; } .custom_fields_above_signature { width: 98%; clear: right; padding: 1em 0 3px 0; border-top: 1px solid #aaa; line-height: 1.4em; font-size: 0.85em; } /* Sometimes there will be an error when you post */ .error { color: red; } /* Messages that somehow need to attract the attention. */ .alert { color: red; } /* Calendar colors for birthdays, events and holidays */ .birthday { color: #920ac4; } .event { color: #078907; } .holiday { color: #01fffd; } /* Colors for warnings */ .warn_mute { color: red; } .warn_moderate { color: #ffa500; } .warn_watch, .success { color: green; } a.moderation_link, a.moderation_link:visited { color: white; font-weight: bold; padding-left: 10px; padding-right: 10px; } .openid_login { background: white url(../images/openid.gif) no-repeat; padding-left: 18px; } /* a descriptive style */ .description, .description_board, .plainbox { padding: 1em 1em; font-size: 0.9em; line-height: 1.4em; background: #222b3f; margin: 0.2em 1px 1em 1px; } .description.tsized {font-size: 12px;} .description_board { margin: 1em 1px 0 1px; } /* an informative style */ .information { padding: 0.5em 1em; font-size: 0.9em; line-height: 1.3em; background: #18202e; margin: 0.2em 1px 1em 1px; } .information p { padding: 1em; margin: 0; } p.para2 { padding: 1em 0 3.5em 0; margin: 0; } /* AJAX notification bar ------------------------------------------------------- */ #ajax_in_progress { background: url(../images/theme/loadingbar.png) repeat-x; color: #f96f00; text-align: center; font-size: 16pt; padding: 8px; width: 100%; height: 66px; line-height: 25px; position: fixed; top: 0; left: 0; } #ajax_in_progress a { color: orange; text-decoration: underline; font-size: smaller; float: right; margin-right: 20px; } /* Lists with settings use these a lot. ------------------------------------------------------- */ dl.settings { clear: right; overflow: auto; margin: 0 0 10px 0; padding: 0; } dl.settings dt { width: 40%; float: left; margin: 0 0 10px 0; padding: 0; clear: both; } dl.settings dt.settings_title { width: 100%; float: none; margin: 0 0 10px 0; padding: 5px 0 0 0; font-weight: bold; clear: both; } dl.settings dt.windowbg { width: 98%; float: left; margin: 0 0 3px 0; padding: 0 0 5px 0; clear: both; } dl.settings dd { width: 56%; float: right; overflow: auto; margin: 0 0 3px 0; padding: 0; } dl.settings img { margin: 0 10px 0 0; } /* help icons */ dl.settings dt a img { position: relative; top: 2px; } /* Styles for rounded headers. ------------------------------------------------------- */ h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg { overflow: hidden; height: 42px; line-height: 42px; font-size: 1.2em; font-weight: bold; } h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a { color: #ffffff; } h3.catbg2 a, h3.catbg2 { color: #feb; } h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover { color: #fff; text-decoration: none; } h3.catbg2 a:hover { color: #fff; text-decoration: none; } h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a { color: #dfdfdf; } h3.titlebg a:hover, h4.titlebg a:hover { color: #53616f; text-decoration: none; } h3.catbg img.icon, h4.titlebg img.icon { vertical-align: middle; margin: -2px 5px 0 0; } h4.catbg a.toggle img { vertical-align: middle; margin: -2px 5px 0 5px; } h4.titlebg img.icon { float: left; margin: 10px 8px 0 0; } #upshrinkHeaderIC h4.titlebg img.icon { margin: 0 3px 0 0; } div.cat_bar { height: 42px; overflow: hidden; margin-bottom: 1px; padding: 0; } div.title_bar { height: 40px; overflow: hidden; margin-bottom: 1px; } #upshrinkHeaderIC p.pminfo { margin: 0; padding: 0.5em; } img#upshrink_ic, img#newsupshrink { float: right; margin: 10px 5px 0 0; } table.table_list a.unreadlink, table.table_list a.collapse { float: right; } table.table_list a.collapse { margin: 0px 5px 0 1em; height: 40px; } table.table_list a.collapse img { vertical-align: middle; } /* The half-round header bars for some tables. */ .table_grid tr.catbg, .table_grid tr.titlebg { font-size: 0.95em; border-bottom: 1px solid #fff; } .table_grid tr.catbg th, .table_grid tr.titlebg th { height: 40px; line-height: 40px; text-align: left; } tr.catbg th.first_th { } tr.catbg th.last_th { } tr.titlebg th.first_th { } tr.titlebg th.last_th { } .table_grid th.last_th input { margin: 0 2px; } .table_grid th.lefttext { padding: 0 0.7em; } /* a general table class */ table.table_grid { border-collapse: collapse; margin-top: 0.1em; } table.table_grid td { padding: 7px 10px; } /* GenericList */ .additional_row { padding: 0.5em 0 0.5em 0; } table.table_grid thead tr.catbg th { white-space: nowrap; } /* table_grid styles for Profile > Show Permissions. */ #permissions table.table_grid td { padding: 0.4em 0.8em; cursor: default; } /* Common styles used to add corners to divisions. ------------------------------------------------------- */ .windowbg span.topslice { display: none; padding-left: 20px; } .windowbg span.topslice span { display: block; height: 11px; } .windowbg span.botslice { display: none; padding-left: 20px; font-size: 5px; line-height: 5px; margin-bottom: 0.2em; } .windowbg span.botslice span { display: block; height: 11px; } .windowbg2 span.topslice { display: none; padding-left: 20px; } .windowbg2 span.topslice span { display: block; height: 11px; } .windowbg2 span.botslice { display: none; padding-left: 20px; font-size: 5px; line-height: 5px; margin-bottom: 0.2em; } .windowbg2 span.botslice span { display: block; height: 11px; } .approvebg span.topslice { display: block; } .approvebg span.topslice span { display: block; } .approvebg span.botslice { display: block; } .approvebg span.botslice span { display: block; } .postbg { border-left: 1px solid #7f7f7f; border-right: 1px solid #7f7f7f; } /* Used for sections that need somewhat larger corners. ----------------------------------------------------------- */ .roundframe { padding: 8px 10px; background: #1c2537; } .roundframe.bi { padding: 0; } #admin_content .roundframe { padding: 10px; } #admin_content span.upperframe, #admin_content span.lowerframe { display: none; } .roundframe dl, .roundframe dt, .roundframe p { margin: 0; } .roundframe p { padding: 0.5em; } span.upperframe { padding: 0; display: block; padding-left: 20px; } span.upperframe:not(.clear), span.lowerframe:not(.clear) { display: none; } span.upperframe span { padding: 0; height: 12px; display: block; } span.lowerframe { padding: 0; display: block; padding-left: 20px; } span.lowerframe span { padding: 0; height: 12px; display: block; } /* The main content area. ------------------------------------------------------- */ .content { padding: 0.5em 1.2em; margin: 1px 0; border: none; } .content p { margin: 0 0 0.5em 0; } /* Styles used by the auto suggest control. ------------------------------------------------------- */ .auto_suggest_div { position: absolute; visibility: hidden; padding: 4px 5px; background: black; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; max-width: 100%; min-width: 120px; box-shadow: 0 5px 7px rgba(0, 0, 0, 0.8); } .auto_suggest_item,.auto_suggest_item_hover { background-color: #121212; color: #acacac; padding: 6px 6px; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; margin: 2px 0; } .auto_suggest_item_hover { background-color: #202020; cursor: pointer; color: #f2f0f0; } /* NAVIGATION MENU. ------------------------------------------------------- */ nav { top: 0; float: right; transition: all 0.8s; -webkit-transition: all 0.8s; -moz-transition: all 0.8s; -ms-transition: all 0.8s; -o-transition: all 0.8s; -webkit-transform: translateZ(0); transform: translateZ(0); } nav ul.dropmenu, .user ul.dropmenu { padding: 0; } nav li a.firstlevel { margin: 0px 0; } nav li a.firstlevel span, .user .dropmenu li a.firstlevel span { line-height: 29px; } nav .dropmenu li a, .user .dropmenu li a { display: block; color: #acacac; /* background: rgba(1, 16, 44, 0.95); */ padding: 3px 8px; text-decoration: none; text-transform: uppercase; font-size: 11px; } nav .dropmenu>li a .icon_style { float: right; margin-right: 8px; line-height: 0; color: #7f7f7f; } nav .dropmenu>li a.firstlevel .icon_style i { padding: 0; font-size: 17px; } nav .dropmenu li a.firstlevel, .user .dropmenu li a.firstlevel { background: rgba(255, 255, 255, 0.06); padding: 2.5px 10px; } nav .dropmenu li:first-child a.firstlevel, .user .dropmenu li:first-child a.firstlevel { } nav .dropmenu li a.active { background: rgba(0, 81, 255, 0.2); } nav .dropmenu li:last-child ul, nav .dropmenu li:nth-last-child(2) ul { right: 0; } nav .dropmenu li a.firstlevel i, .user .dropmenu li a.firstlevel>i { display: block; text-align: center; font-size: 15px; padding: 6px 0 2px; } /*nav > ul.dropmenu > li > a:link,nav > ul.dropmenu > li > a:visited { padding: 10px 10px; background: black; color: white; margin-right: 1px; } nav > ul.dropmenu > li > a > span { padding-left: 0 ; left: 0 ; height: auto ; line-height: inherit ; }*/ .dropmenu li ul[style="height: 0px;"] { overflow: hidden; } /* Styles for the standard dropdown menus. ------------------------------------------------------- */ #main_menu { padding: 0 0.5em; float: left; margin: 0; width: 98%; } .dropmenu, .dropmenu ul { list-style: none; line-height: 1em; padding: 0; margin: 0; } .dropmenu { padding: 0 0.5em; } .dropmenu a { display: block; color: #a6a6a6; padding: 13px 17px; text-decoration: none; position: relative; } .dropmenu li a.firstlevel:after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); background: rgba(255, 255, 255, 0.5); height: 2px; width: 0; -webkit-transition: all .25s ease; -moz-transition: all .25s ease; -o-transition: all .25s ease; -ms-transition: all .25s ease; transition: all .25s ease; display: none; } .dropmenu li:hover a.firstlevel:after, nav .dropmenu li a.firstlevel.active:after { width: 100%; } nav .dropmenu li a.firstlevel.active:after { background: rgba(255, 255, 255, 0.7); } .dropmenu li li a, .user .dropmenu li li a { padding: 15px 12px; overflow: hidden; z-index: 0; } .dropmenu a span:not(.newNumber) { display: block; padding: 0; } /* the background's first level only */ .dropmenu li a, .dropmenu li ul {border-radius: 4px;-webkit-border-radius: 4px;-moz-border-radius: 4px;-ms-border-radius: 4px;-o-border-radius: /* Character Manager things. */ .acm_character_image img { max-width: 100px; } .tabstrip { padding: 2px; } .nav-tabs li { padding: 4px 8px; display: inline-block; background: #f8f8f8; line-height: 16px; } .nav-tabs li a { text-decoration: none; line-height: 16px; } .nav-tabs li.active { background: #DDD; } .tab { display: none; opacity: 0; -webkit-transition: opacity 500ms ease; -moz-transition: opacity 500ms ease; -ms-transition: opacity 500ms ease; -o-transition: opacity 500ms ease; transition: opacity 500ms ease; } .tab.active { display: block; opacity: 1; -webkit-transition: opacity 500ms ease; -moz-transition: opacity 500ms ease; -ms-transition: opacity 500ms ease; -o-transition: opacity 500ms ease; transition: opacity 500ms ease; transition-delay: 500ms; } .tab fieldset { padding: 5px; } .tab legend { padding: 2px 12px; } .character_bio_form { clear: both; overflow: visible; margin: 10px 0; padding: 5px; } .character_bio_form dt { width: 45%; float: left; margin: 0 0 10px 0; clear: both; } .character_bio_form dd { width: 55%; float: right; overflow: auto; margin: 0 0 3px 0; padding: 2px; } .acm_smol_edit { display: inline-block; width: 16px; height: 16px; background: url(../images/charmod/modify.png) no-repeat; margin: 1px 0 0 4px; } .acm_smol_delete { display: inline-block; width: 16px; height: 16px; background: url(../images/charmod/delete.png) no-repeat; margin: 1px 0 0 4px; } .acm_character_image img { max-width: 100px; height: auto; } .acm_character_link a { font: italic 28px/30px Georgia, serif; } .acm_character_link span { display: block; } .acm_bio_tabs { background: #EEE; padding: 8px; border: solid #DDD; border-width: 1px; } .acm_bio_header { padding: 25px 12px 12px 12px; font: italic 28px/8px Georgia,serif; text-align: center; background: #f8f8f8; border: solid #ddd; border-width: 1px 1px 0 1px; } .acm_bio_header div { padding: 10px; font: 12px/14px Arial, sans-serif; text-align: center; color: black; } .acm_bio_container { background: #F7F7F7; padding: 10px; border: solid #DDD; border-width: 0 1px 1px 1px; } .acm_bio_blurb { padding: 10px; font: 14px/16px serif; text-align: center; color: white; } .bio_flex { display: flex; padding: 5px 0 0 0; } .acm_bio_right { flex: 2; } .acm_bio_right .acm_bio_tabs { border-width: 1px 0; } .acm_bio_right .acm_bio_tabs .nav-tabs li.active a { color: white; } .acm_bio_right .bio_contain_pad { padding: 0 12px; } .acm_bio_right .tab { padding: 10px; } .acm_bio_left { flex: 0.3; padding: 0 0 0 6px; } .acm_bio_left img.acm_badge { margin: 12px auto; display: block; } .character_bio_form.bio_contain_pad dt, .acm_bio_right .character_bio_form dt { width: 35%; } .character_bio_form.bio_contain_pad dd, .acm_bio_right .character_bio_form dd { width: 65%; } .acm_bio_right h1 { font: 133%/134% "Lucida Grande", Verdana, Arial, sans-serif; border-bottom: 1px solid; } .acm_bio_signature { padding: 12px; border-top: 1px solid #ddd; } .approvebg { background-color: #ffeaea; border: 1px solid #ddd; } .activebg { background-color: #eeffea; border: 1px solid #ddd; } .autolist_letter { font: italic 36px/38px Times New Roman, serif; padding: 8px; } .autolist_headerbar { display: flex; align-items: center; border: solid lightgrey; border-width: 1px 0; padding: 10px; margin: 2px 0; } .autolist_character_image { margin: 0 15px; } .autolist_character_image img { max-width: 100px; height: auto; border: solid; border-width: 0 5px; } .autolist_character_value { width: 100%; } .autolist_character_name, .autolist_player { width: 298px; text-align: center; } .acm_autolist_row { margin: 4px 0; } .acm_autolist_link { padding: 4px 8px; font: italic 28px/30px serif; } .acm_autolist_var { font: 12px/14px Arial, sans-serif; border-bottom: 1px solid #ddd; padding: 3px 3px 3px 20px; } .acm_autolist_desc { padding: 4px 4px 4px 40px; } .acm_hidden { background: #ffeaea; border: 1px solid red; } .indent_40 { padding-left: 40px; } Thank you so much.
  13. It's not actually reading the CSS for it in NightBreeze that's why it's not in the inspect element part. You'll have to figure out why. If you want just copy-paste the CSS for NightBreeze here and I'll look at it.
  14. Okay, I'm going to have to go through this again probably, but here's what I'm seeing at the moment (attached). The css for the mod is in index.css and index.min.css for the NightBreeze theme. And it's of course in the default theme index.css, too.
  15. Okay, so what you can do is stay on the default theme, and then right click one of the image icons and inspect element. Find the CSS that goes with it and then compare the CSS that's in the default that's working with the other theme's to find and copy over what's missing.
  16. Well, that's not what that screen's supposed to look like. So my best guess is there's some CSS missing. Does this work right on the default theme?
  17. The part that copies into the index.css on the default theme? Yes. Is there another bit I should have?
  18. Okay. Here's a dumb question for you because I just actually looked at the screencap xD Did you copy the ACM CSS over to NightBreeze, too?
  19. It was in the default folder, it was not in the NightBreeze folder - have now added it, but still no luck.
  20. Does the folder in the default theme exist in the one for NightBreeze? Because I don't think it defaults to the default theme because of the stupid way past me coded that. So you'll need that folder for ACM in all the themes on your site.
  21. Hmm. It looks like they were already in the folder. Reuploaded them just in case, but no change. 😐 It's very possible it's just something weird with the theme I'm using (NightBreeze).
  22. I believe the images for it are missing from the installer, I'd have to dig them up because they're in one of these other help topics but people are bad at separating issues into different topics... Found it. Save the images and put them where I listed to c:
  23. Everything is installed just fine. I've figured out how to fix (I think) all of the errors I've run into so far. (Running 2.0.15) The thing that is defeating me for some dumb reason is that I can't figure out where the edit/delete buttons are for the Bio Form in the admin section. Half of the table seems to have gone missing. I'm baffled (and full of cough syrup so it's very possible I'm overlooking something). I've checked the package files and my theme files and it should be showing them, they're certainly there in the page source... They're just. Not showing up. please help If I need to chase down any code just let me know. -- ETA: Ugh, it's gotta be something in my theme files. istg.
  24.  
  • Member Statistics

    8,029
    Total Members
    6,456
    Most Online
    mrs. flax
    Newest Member
    mrs. flax
    Joined

  • Recently Browsing

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use, Guidelines and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.