Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / ui / file_manager / file_manager / foreground / css / common.css
index 6cdaf42..348e5b9 100644 (file)
@@ -61,7 +61,7 @@ input.common[type='checkbox'].white:checked::after {
 
 input.common[type='checkbox']::after {
   content: '';
-  display: -webkit-box;
+  display: flex;
   height: 15px;
   left: -2px;
   position: absolute;
@@ -116,7 +116,7 @@ input.common[type='checkbox']::after {
 }
 
 .buttonbar {
-  display: -webkit-box;
+  display: flex;
   height: 31px;
 }
 
@@ -237,7 +237,7 @@ menu.chrome-menu > menuitem[disabled] {
 }
 
 menu.chrome-menu > menuitem:not([disabled])[selected],
-menu.chrome-menu > menuitem:not([disabled])[selected]:active {
+menu.chrome-menu > menuitem:not([disabled]):active {
   background-color: rgb(66, 129, 244);
   color: white;
 }
@@ -354,29 +354,6 @@ select[size='1']:hover {
   min-width: 6px;
 }
 
-.progress-track.smoothed {
-  transition: width 1s linear;
-}
-
-/* Icons for the action choice dialog and choosing the default app. */
-div.import-photos-to-drive-icon {
-  background-image: -webkit-image-set(
-    url('../images/media/drive.png') 1x,
-    url('../images/media/2x/drive.png') 2x);
-}
-
-div.view-files-icon {
-  background-image: -webkit-image-set(
-    url('../../common/images/icon32.png') 1x,
-    url('../../common/images/icon64.png') 2x);
-}
-
-div.watch-single-video-icon {
-  background-image: -webkit-image-set(
-    url('../images/media/watch.png') 1x,
-    url('../images/media/2x/watch.png') 2x);
-}
-
 /* Entry names (File names, Folder names, Volume names, ...). */
 /* Their base bidi direction should be ltr even in RTL languages. */
 html[dir='rtl'] .entry-name {
@@ -388,11 +365,11 @@ html[dir='rtl'] .entry-name {
 /* Pop-up dialogs. */
 
 .cr-dialog-container {
-  -webkit-box-align: center;
-  -webkit-box-pack: center;
   -webkit-user-select: none;
-  display: -webkit-box;
+  align-items: center;
+  display: flex;
   height: 100%;
+  justify-content: center;
   left: 0;
   overflow: hidden;
   position: absolute;
@@ -403,14 +380,14 @@ html[dir='rtl'] .entry-name {
 }
 
 .cr-dialog-frame {
-  -webkit-box-orient: vertical;
   background-color: rgb(250, 250, 250);
   border: 1px solid rgb(255, 255, 255);
   border-radius: 2px;
   box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .5);
   color: rgb(34, 34, 34);
   cursor: default;
-  display: -webkit-box;
+  display: flex;
+  flex-direction: column;
   padding: 20px;
   position: relative;
   width: 460px;
@@ -499,9 +476,9 @@ html[dir='rtl'] .entry-name {
 }
 
 .cr-dialog-buttons {
-  -webkit-box-orient: horizontal;
-  -webkit-box-pack: end;
-  display: -webkit-box;
+  display: flex;
+  flex-direction: row;
+  justify-content: flex-end;
   padding-top: 10px;
 }