stu-cmd.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. @import "./_stu-body";
  2. @import "./_stu-box";
  3. @import "./_stu-form";
  4. @import "./_stu-scene-tip";
  5. .box {
  6. .body {
  7. padding: 10px;
  8. background: #d8e7f9;
  9. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. .cmd-form {
  14. width: 100%;
  15. }
  16. .role-box {
  17. display: flex;
  18. & > div {
  19. width: 100%;
  20. padding: 0;
  21. }
  22. /* .form-control, .select2-selection--single {
  23. border: none;
  24. }*/
  25. }
  26. .select-box, .input-box, .cmd-box {
  27. background: none;
  28. }
  29. .input-box {
  30. display: none;
  31. margin-left: 15px;
  32. }
  33. .cmd-box {
  34. position: relative;
  35. padding: 0;
  36. .txt {
  37. padding: 10px;
  38. }
  39. .btn {
  40. position: absolute;
  41. right: 15px;
  42. bottom: 15px;
  43. margin: 5px auto;
  44. width: 150px;
  45. &.close-tip {
  46. background: #007bff;
  47. }
  48. }
  49. .help-box {
  50. position: absolute;
  51. left: 15px;
  52. bottom: 15px;
  53. width: 70%;
  54. }
  55. }
  56. }