Jump to content

Template:Insert quote panel/styles.css: Difference between revisions

From Insurer Brain
Content deleted Content added
No edit summary
No edit summary
Line 66: Line 66:
================================================================= */
================================================================= */
.insert-quote-panel.has-image {
.insert-quote-panel.has-image {
gap: 15px;
gap: 15px;
padding-top: 10px; /* UPDATED: Adds space above the whole panel */
}
}



Revision as of 22:30, 17 December 2025

/* Template:Insert quote panel/styles.css */

/* --- 1. MAIN CONTAINER --- */
.insert-quote-panel {
  clear: both;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 2em 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: #202122;
}

/* --- 2. IMAGE STYLING --- */
.insert-quote-image {
  flex: 0 0 auto;
  line-height: 0;
  margin-top: 5px;
}
.insert-quote-image img {
  border-radius: 50%;
  border: 1px solid #ffffff;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/* --- 3. CONTENT WRAPPER --- */
.insert-quote-content {
  flex: 1;      
  min-width: 0; 
  width: 100%;
}

/* =================================================================
   SCENARIO A: NO IMAGE (Gray Box)
   ================================================================= */
.insert-quote-panel.no-image .insert-quote-content {
  background: #F8F9FA;
  border: 0 solid #9CA4AC;
  border-radius: 0;
  padding: .5em .5em .5em 0; 
  color: #202122;
}

.insert-quote-panel.no-image a,
.insert-quote-panel.no-image a:visited { 
  color: #202122; 
  text-decoration: underline; 
}

/* --- A1. FIX AUTHOR INDENT (NO IMAGE) --- */
.insert-quote-panel.no-image .insert-quote-content .templatequotecite,
.insert-quote-panel.no-image .insert-quote-content cite,
.insert-quote-panel.no-image .insert-quote-content small {
    display: block;
    /* Adjusted to 2.5em per request */
    padding-left: 3.0em !important; 
    margin-top: 0.5em; 
}


/* =================================================================
   SCENARIO B: WITH IMAGE (Clean, Transparent, Flush Left)
   ================================================================= */
.insert-quote-panel.has-image {
  gap: 15px;
  padding-top: 10px; /* UPDATED: Adds space above the whole panel */
}

.insert-quote-panel.has-image .insert-quote-content {
  background: transparent !important; 
  border: none !important;            
  padding: 0 !important;              
  margin: 0 !important;
  color: #202122;
}

/* --- B1. RESET THE QUOTE TEXT (Only for Has-Image) --- */
.insert-quote-panel.has-image .insert-quote-content .quotebox,
.insert-quote-panel.has-image .insert-quote-content blockquote,
.insert-quote-panel.has-image .insert-quote-content p,
.insert-quote-panel.has-image .insert-quote-content div {
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important; 
    max-width: 100% !important;
}

/* --- B2. RESET THE AUTHOR (Only for Has-Image) --- */
.insert-quote-panel.has-image .insert-quote-content .templatequotecite,
.insert-quote-panel.has-image .insert-quote-content cite,
.insert-quote-panel.has-image .insert-quote-content small {
    display: block !important;
    text-align: left !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 0em !important;
    margin-bottom: 0 !important;
}

/* --- B3. REMOVE TOP GAP (Only for Has-Image) --- */
.insert-quote-panel.has-image .insert-quote-content > .quotebox > *:first-child,
.insert-quote-panel.has-image .insert-quote-content > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}