summaryrefslogtreecommitdiffstats
path: root/db/feedtype.php
AgeCommit message (Expand)Author
2014-10-21convert tabs indention to indention with 4 spaces because of mixing of both v...Bernhard Posselt
2014-04-19update headers to be compatible with phpdoc, slim down license text to make c...Bernhard Posselt
2013-08-26change email adress in copyright headersBernhard Posselt
2013-03-20finished foldermapperBernhard Posselt
2013-01-27merged the angularjs branchBernhard Posselt
n54'>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 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
/**
 * ownCloud - News
 *
 * @author Bernhard Posselt
 * @copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or any later version.
 *
 * This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
 *
 * You should have received a copy of the GNU Affero General Public
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#undo-container { 
	position: fixed; 
	top: 0px; 
	width: 100%; 
	text-align: center; 
	z-index: 101; 
	line-height: 1.2;
}

#undo { 
	z-index:101;
	background-color:#fc4;
	border:0;
	padding:0 .7em .3em;
	display:none;
	position: relative;
	top:0;
	-moz-border-radius-bottomleft:1em;
	-webkit-border-bottom-left-radius:1em;
	border-bottom-left-radius:1em;
	-moz-border-radius-bottomright:1em;
	-webkit-border-bottom-right-radius:1em;
	border-bottom-right-radius:1em;
}

#undo a {
	font-weight: bold;
}

#undo a:hover {
	text-decoration: underline;
}


.starred-icon {
	background-image: url('../img/starred.png');
}

.subscriptions-icon {
	background-image: url('../img/rss.svg');
}

.unread > a,
.unread > .utils .unread-counter {
	font-weight: bold;
}

#app-navigation .with-icon .list-title {
	padding-left:16px;
}

#app-navigation .with-icon .list-title span {
	display:none;
	margin-left:6px;
}

#app-navigation .with-icon .list-title:hover span {
	display:inline;
}

#app-navigation .with-icon .opened span {
	display:inline;
}

#app-navigation .unread > a {
	padding-right: 32px;
}

#app-navigation .active > a {
	padding-right: 40px;
}

#app-navigation .active.unread > a {
	padding-right: 80px;
}

#app-navigation li:hover > a {
	padding-right: 60px;
}

#app-navigation .add-new:hover > a {
	padding-right: 0px;
}

#app-navigation .utils {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

#app-navigation .utils > * {
	float: right;
}

#app-navigation .utils button {
	margin: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	display: none;
	height: 30px;
	width: 22px;
}

#app-navigation li:hover > .utils button {
	display: block;
}

/* only display the delete button when the feed is active */
#app-navigation li:hover > .utils .delete-button {
	display: none;
}

#app-navigation li.active > .utils .delete-button {
	display: block;
}

.folder {
	text-transform: uppercase;
}

.feed {
	text-transform: none;	
}

.unread-counter {
	padding: 8px 6px 8px 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	font-size: 9pt;
	display: none;
}


.unread .unread-counter {
	display: block;
}
.starred .unread-counter {
	font-weight: normal !important;
}


button.action {
	opacity: .5;
}

button.action:hover {
	opacity: 1;
}


#app-navigation li:hover > .utils {
	display: block;
}

#app-navigation li:hover > .utils .unread-counter {
	padding-left: 0;
}

#app-navigation .rename-feed > input {
	width: 155px;
	height: 15px;
}

#app-navigation .folder-input {
	text-transform: uppercase;
}

.delete-icon {
	background-image: url('../img/delete.svg');
}

.rename-feed-icon {
	background-image: url('../img/rename.svg');
}

.mark-read-icon {
	background-image: url('../img/mark_read.svg');
}

.rename-feed input {
	margin: 1px 0 0px 5px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
}

.rename-feed button {
	margin: 5px 0 5px 0;
	display: inline-block;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	width: 30px !important;
	height: 30px !important;
        padding: 0.6em;
}

.rename-feed .action-button {
	background-position: center;
	background-repeat: no-repeat;	
}

.rename-feed .back-button {
	border-radius: 3px;
	background-image: url('../img/delete.svg');
}

.rename-feed .create-button {
	border-radius: 0;
	background-image: url('../img/mark_read.svg');
}

.rss-icon {
	background-image: url('../img/rss.svg');
}

#app-navigation .ui-draggable-dragging {
	width: 249px;
}

#app-navigation .multiselect {
	height:20px;
}

.progress-icon {
	background-image: url('../img/loading.gif'); 
}

.problem-icon {
	background-image: url('../img/problem.svg') !important;
}

.failed {
	background-color: #F2FF63 !important;
	text-shadow: none !important;
	font-weight: bold;
}

	.failed .title  {
		background-color: #F2FF63 !important;
		width: 299px !important;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		display: inline-block !important;
	}

	.failed a:hover,
	.failed:hover a {
		background-color: #F2FF63 !important;
	}

	.failed .message {
		font-weight: normal;
		padding: 5px 20px 5px 32px;
	}

	.folder .feed.failed .message {
		padding-left: 48px;
	}

.tooltip {
	text-shadow: none;
	text-transform: none;
}