cinera: More namespacing and style tweak

This commit is contained in:
Matt Mascarenhas 2017-12-10 17:05:46 +00:00
parent f07cc87629
commit fda3ee819b
2 changed files with 17 additions and 17 deletions

View File

@ -14,7 +14,7 @@ typedef struct
version CINERA_APP_VERSION = { version CINERA_APP_VERSION = {
.Major = 0, .Major = 0,
.Minor = 5, .Minor = 5,
.Patch = 7 .Patch = 8
}; };
#define CINERA_DB_VERSION 1 #define CINERA_DB_VERSION 1
@ -2475,7 +2475,7 @@ AppendedIdentifier:
CopyBuffer(&Annotation, &AnnotationHeader); CopyBuffer(&Annotation, &AnnotationHeader);
CopyStringToBuffer(&Annotation, CopyStringToBuffer(&Annotation,
" <div class=\"content\"><span class=\"timecode\">%s</span>", " <div class=\"cineraContent\"><span class=\"timecode\">%s</span>",
Anno->time); Anno->time);
CopyBuffer(&Annotation, &Text); CopyBuffer(&Annotation, &Text);
@ -2487,7 +2487,7 @@ AppendedIdentifier:
CopyStringToBuffer(&Annotation, "</div>\n" CopyStringToBuffer(&Annotation, "</div>\n"
" <div class=\"progress faded\">\n" " <div class=\"progress faded\">\n"
" <div class=\"content\"><span class=\"timecode\">%s</span>", " <div class=\"cineraContent\"><span class=\"timecode\">%s</span>",
Anno->time); Anno->time);
CopyBuffer(&Annotation, &Text); CopyBuffer(&Annotation, &Text);
@ -2500,7 +2500,7 @@ AppendedIdentifier:
CopyStringToBuffer(&Annotation, "</div>\n" CopyStringToBuffer(&Annotation, "</div>\n"
" </div>\n" " </div>\n"
" <div class=\"progress main\">\n" " <div class=\"progress main\">\n"
" <div class=\"content\"><span class=\"timecode\">%s</span>", " <div class=\"cineraContent\"><span class=\"timecode\">%s</span>",
Anno->time); Anno->time);
CopyBuffer(&Annotation, &Text); CopyBuffer(&Annotation, &Text);

View File

@ -1,7 +1,7 @@
/* Index */ /* Index */
.cineraQueryContainer { .cineraQueryContainer {
width: 1024px; max-width: 1024px;
margin: 15px auto; margin: 15px auto;
display: flex; display: flex;
flex-direction: horizontal; flex-direction: horizontal;
@ -36,7 +36,7 @@
#cineraResults, #cineraResults,
#cineraIndex { #cineraIndex {
width: 800px; max-width: 800px;
margin: 0 auto; margin: 0 auto;
} }
@ -58,7 +58,7 @@
#cineraResults .markerList { #cineraResults .markerList {
display: inline-block; display: inline-block;
width: 600px; max-width: 600px;
box-sizing: border-box; box-sizing: border-box;
vertical-align: top; vertical-align: top;
} }
@ -386,8 +386,8 @@
} }
.cineraMenus > .menu > .filter_container .filter_content.rant .text, .cineraMenus > .menu > .filter_container .filter_content.rant .text,
.cineraPlayerContainer .markers_container > .marker.rant .content, .cineraPlayerContainer .markers_container > .marker.rant .cineraContent,
.cineraPlayerContainer .markers_container > .marker.off_rant .content { .cineraPlayerContainer .markers_container > .marker.off_rant .cineraContent {
font-variant: small-caps; font-variant: small-caps;
} }
@ -420,7 +420,7 @@
overflow: hidden; overflow: hidden;
} }
.cineraPlayerContainer .markers_container > .marker .content { .cineraPlayerContainer .markers_container > .marker .cineraContent {
box-sizing: border-box; box-sizing: border-box;
display: block; display: block;
font-size: 14px; font-size: 14px;
@ -429,8 +429,8 @@
word-wrap: break-word; word-wrap: break-word;
} }
.cineraPlayerContainer .markers_container > .marker.authored .content .author, .cineraPlayerContainer .markers_container > .marker.authored .cineraContent .author,
.cineraPlayerContainer .markers_container > .marker.off_authored .content .author { .cineraPlayerContainer .markers_container > .marker.off_authored .cineraContent .author {
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
font-weight: bold; font-weight: bold;
@ -448,7 +448,7 @@
opacity: 0.5; opacity: 0.5;
} }
.cineraPlayerContainer .markers_container > .marker .content sup { .cineraPlayerContainer .markers_container > .marker .cineraContent sup {
font-style: normal; font-style: normal;
font-variant: normal; font-variant: normal;
} }
@ -470,7 +470,7 @@
top: -2px; top: -2px;
} }
.cineraPlayerContainer .markers_container > .marker .content .categories { .cineraPlayerContainer .markers_container > .marker .cineraContent .categories {
display: inline-flex; display: inline-flex;
margin: 4px; margin: 4px;
} }
@ -480,18 +480,18 @@
} }
.cineraMenus > .menu > .filter_container .filter_content .category, .cineraMenus > .menu > .filter_container .filter_content .category,
.cineraPlayerContainer .markers_container > .marker .content .categories .category { .cineraPlayerContainer .markers_container > .marker .cineraContent .categories .category {
border-radius: 50%; border-radius: 50%;
height: 5px; height: 5px;
width: 5px; width: 5px;
} }
.cineraMenus > .menu > .filter_container .filter_content .category.off, .cineraMenus > .menu > .filter_container .filter_content .category.off,
.cineraPlayerContainer .markers_container > .marker .content .categories .category.off { .cineraPlayerContainer .markers_container > .marker .cineraContent .categories .category.off {
background: transparent; background: transparent;
} }
.cineraPlayerContainer .markers_container > .marker .content .categories .category { .cineraPlayerContainer .markers_container > .marker .cineraContent .categories .category {
margin-left: 2px; margin-left: 2px;
} }