Blame view

components/com_monthlyarchive/views/archive/tmpl/default.css 4.75 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
/* ======================================================
# Monthly Archive - Joomla! Component v4.3.3 (PRO version)
# -------------------------------------------------------
# For Joomla! 3.x
# Author: Yiannis Christodoulou (yiannis@web357.eu)
# Copyright (©) 2009-2018 Web357. All rights reserved.
# License: GNU/GPLv3, http://www.gnu.org/licenses/gpl-3.0.html
# Website: https://www.web357.eu/
# Demo: http://demo.web357.eu/?item=monthlyarchive
# Support: support@web357.eu
# Last modified: 09 Feb 2018, 13:55:18
========================================================= */

/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.uk-input.ma-input,
.uk-select.ma-select {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 6px;
  background: #fff;
  color: #666;
  border: 1px solid #e5e5e5;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: color, background-color, border;
  transition-property: color, background-color, border;
}
/*
 * Single-line
 * 1. Allow an `a` element to look like a `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically if `a` element is used
 */
.uk-input.ma-input,
.uk-select:not([multiple]):not([size]),
.ma-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
  /* 2 */
  line-height: 38px;
}
/*
 * Multi-line
 */
.uk-select[multiple],
.uk-select[size],
.ma-select[multiple],
.ma-select[size] {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}
/* Focus */
.uk-input:focus,
.uk-select:focus,
.ma-input:focus,
.ma-select:focus {
  outline: 0;
  background-color: #fff;
  color: #666;
  border-color: #1e87f0;
}
/* Disabled */
.uk-input:disabled,
.uk-select:disabled,
.ma-input:disabled,
.ma-select:disabled {
  background-color: #f8f8f8;
  color: #999;
  border-color: #e5e5e5;
}
/*
 * Placeholder
 */
.uk-input:-ms-input-placeholder,
.ma-input:-ms-input-placeholder {
  color: #999 !important;
}
.uk-input::-moz-placeholder,
.ma-input::-moz-placeholder {
  color: #999;
}
.uk-input::-webkit-input-placeholder,
.ma-input::-webkit-input-placeholder {
  color: #999;
}

/* filter date */
.uk-select.ma-filter-date-all {
  background: #ddd;
}
.uk-select.ma-filter-date-year {
  background: #f2f2f2;
}
.uk-select.ma-filter-date-month {
  background: #fff;
}
.ma-pagination .limit.pull-right {
  display: none;
}

/* display modal in front of other elements */
.uk-modal.uk-open,
.uk-modal-container {
	z-index: 99999;
}

/* do not use any type of list styles */
#ma-container .ma-list {
  margin-bottom: 35px !important;
}

#component ul.uk-list.ma-list li, /* fix for joomlaxtc templates */
ul.uk-list.ma-list li {
	list-style: none !important;
    margin: 0 0 15px 0;
    padding: 0;
	border: none;
    list-style-type: none;
	background: none;
}

/* increase the font-size of some elements */
.uk-scope .uk-button {
  font-size: inherit;
}

/**
 * Tooltip Style
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 1030;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: -10px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #666;
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* fix icon button height in IE */
.ma-fieldset span.uk-icon {
	width: 16px;
	height: 16px;
}

/* Do not display content item in front of other template elements like sticky menu */
.ma-content-item {
  z-index: 1;
}

/* Reset the height of button */
.ma-clear-btn {
  height: 100%;
}

/* Highlight the matched search word  */
.ma-highlight-search-word {
  background-color: yellow;
  padding: 2px;
  color: red;
  font-weight: bold;
}

/* make sure that the alert popup is over other divs */
.com_monthlyarchive .wrap {
  z-index: 0 !important;
}

/* conflicts with UIkit 2 */
.uk-grid-match  {
  visibility: visible !important;
}